Link to home
Start Free TrialLog in
Avatar of Seven price
Seven priceFlag for United States of America

asked on

encyption not defined

Type 'ExtractAndSerialize.Encryption64' is not defined.      

Public Function encryptQueryString(ByVal strQueryString As String) As String
            Dim oES As New ExtractAndSerialize.Encryption64()
            Return oES.Encrypt(strQueryString, "!#$a54?3")
        End Function

        Public Function decryptQueryString(ByVal strQueryString As String) As String
            Dim oES As New ExtractAndSerialize.Encryption64()
            Return oES.Decrypt(strQueryString, "&%#@?,:*")
        End Function
ASKER CERTIFIED SOLUTION
Avatar of RameshS
RameshS
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Seven price

ASKER

tks