Ashank4vba
Programmer
Hi,
I need to encrypt some passwords before storing in my table.
I tried the RC4 encryption algorithm code. Although it works, it generates passwords with quotes (') and this creates problems when trying to retrieve the passwords using a query.
I do not know much about encryption and so before I use simple encryptiong logic like
character = chr(asc(character) + 10)
for encryption
, I wanted to enquire better solutions to my problem.
For example, I saw that there is a "cryptext 1.0 Type library" in the references but I do not know how to use it.
Please help!
Thanks!
-cheers
Ashank
I need to encrypt some passwords before storing in my table.
I tried the RC4 encryption algorithm code. Although it works, it generates passwords with quotes (') and this creates problems when trying to retrieve the passwords using a query.
I do not know much about encryption and so before I use simple encryptiong logic like
character = chr(asc(character) + 10)
for encryption
For example, I saw that there is a "cryptext 1.0 Type library" in the references but I do not know how to use it.
Please help!
Thanks!
-cheers
Ashank