Search results for query: *

  1. J

    Encrypt/Decrypt password for client to submit to webservice

    Found Solution Thanks to a comment on Convert Byte[] (Byte Array) to String and ViceVersa I was able to solve my problem by using Convert.FromBase64String and Convert.ToBase64String in place of System.Text.ASCIIEncoding
  2. J

    Encrypt/Decrypt password for client to submit to webservice

    Encryption is triple DES, which gives me a result in Byte Array, the byte array is converted to a string using System.Text.ASCIIEncoding Dim oEncryption As New Score.Common.Encryption Dim oEncode As New System.Text.ASCIIEncoding strEncodedString =...
Back
Top