Package com.axemble.vdoc.sdk.utils
Interface IEncryptUtils
public interface IEncryptUtils
IEncryptUtils
 Use this utils to encrypt and decrypt string
- 
Method SummaryModifier and TypeMethodDescriptionDecrypt encrypted stringDecrypt encrypted string with an encryption keyEncrypt stringEncrypt string with an encryption key
- 
Method Details- 
encryptEncrypt string- Parameters:
- value- to encrypt
- Returns:
- encrypted value
 
- 
encryptEncrypt string with an encryption key- Parameters:
- privateKey- the encryption key (128 bit key)
- initVector- the init vector for encryption (128 bit key)
- value- to encrypt
- Returns:
- encrypted value
 
- 
decryptDecrypt encrypted string- Parameters:
- encrypted- string to decrypt
- Returns:
- decrypted string
 
- 
decryptDecrypt encrypted string with an encryption key- Parameters:
- privateKey- the encryption key (128 bit key)
- initVector- the init vector for encryption (128 bit key)
- encrypted- string to decrypt
- Returns:
- decrypted string
 
 
-