F Facilauto Juan Member Licensed User Longtime User Dec 5, 2013 #1 Hello there! I'm using the Encryption library to encrypt my data. I want to use that same data in my VB6 application. I need to decrypt the data in my VB6 in order to use it, but... for that I need a compatible decrypt function in VB6. How could I do that? Thanks for the answers.
Hello there! I'm using the Encryption library to encrypt my data. I want to use that same data in my VB6 application. I need to decrypt the data in my VB6 in order to use it, but... for that I need a compatible decrypt function in VB6. How could I do that? Thanks for the answers.
Erel B4X founder Staff member Licensed User Longtime User Dec 6, 2013 #2 The Encryption library allows you to choose the encryption method. Which method are you using? Upvote 0
F Facilauto Juan Member Licensed User Longtime User Dec 10, 2013 #3 Mm... Is this the line that tells the library which encryption method to use? kg.Initialize ("DES") cc.Initialize ("DES/ECB/NoPadding") Upvote 0
Mm... Is this the line that tells the library which encryption method to use? kg.Initialize ("DES") cc.Initialize ("DES/ECB/NoPadding")
Erel B4X founder Staff member Licensed User Longtime User Dec 10, 2013 #4 Yes. If you like you can use B4J to encrypt / decrypt data saved with RandomAccessFile.WriteEncryptedObject. Upvote 0
Yes. If you like you can use B4J to encrypt / decrypt data saved with RandomAccessFile.WriteEncryptedObject.