Android Question B4XEncryption from String to String

aeric

Expert
Licensed User
Longtime User
Using B4XEncryption library, I am able to encrypt a string to byte then decrypt the byte back to string
String1 --> Encrypt(String1) --> Byte --> Decrypt(Byte) --> String1
Can I encrypt a string to a cipher string then decrypt the cipher string back to string?
String1 --> Encrypt(String1) --> String2 --> Decrypt(String2) --> String1
 
Top