ark::crypt::AesEncryptedPair
Defined in header “ark/crypt/aes.hh”.
AES-encrypted data, produced from one of the APIs in this header file.
Methods
-
AesEncryptedPair()
Default constructor. -
AesEncryptedPair(const std::string & input)
Construct from a previously emitted string. -
std::string str()
Returns a string form of this pair. -
bool operator==(const AesEncryptedPair & other)
Default comparison operator.
Variables
-
std::string iv
The IV parameter used to encrypt this data. -
std::string data
The actual encrypted text.