Visible to Intel only — GUID: GUID-DEB3D1A7-BEBA-4C2D-A936-0985A6E57B62
Visible to Intel only — GUID: GUID-DEB3D1A7-BEBA-4C2D-A936-0985A6E57B62
AES_SIVEncrypt
Performs the SIV authenticated encryption using the AES cipher.
IppStatus ippsAES_SIVEncrypt(const Ipp8u* pSrc, Ipp8u* pDst, int len, Ipp8u* pSIV, const Ipp8u* pAuthKey, const Ipp8u* pConfKey, int keyLen, const Ipp8u* AD[], const int ADlen[], int numAD);
ippcp.h
pSrc |
Pointer to the input data to encrypt (plaintext). |
pDst |
Pointer to the output encrypted data (ciphertext). |
len |
Length in bytes of the plaintext and ciphertext. |
pSIV |
Pointer to the output synthetic initialization vector. |
pAuthKey |
Pointer to the authentication key. |
pConfKey |
Pointer to the confidentiality key. |
keyLen |
Length of keys in bytes. |
AD |
Array of pointers to the associated input strings. |
ADlen |
Array of length (in bytes) of the associated input strings. |
numAD |
The number of the associated strings. |
The AES_SIVEncrypt function accepts authentication and confidentiality keys of length keyLen each, plaintext (*pSrc) of an arbitrary length len, and a vector AD[] of associated data (strings). The output of the function is the 16-byte synthetic initialization vector (*pSIV) and encrypted data (*pDst) of the same length as the plaintext.
The computation includes the following steps:
Compute a synthetic initialization vector by passing the plaintext, pAuthKey key, and AD[] to AES_S2V_CMAC.
Encrypt the plaintext using the AES cipher in the CTR mode with the initial counter value (CTR0) equal to the synthetic initialization vector xored with a fixed mask.
ippStsNoErr |
Indicates no error. Any other value indicates an error or warning. |
ippStsNullPtrErr |
Indicates an error condition if any of the specified pointers is NULL or a pointer AD[i] to any individual string is NULL while the length ADlen[i] is non-zero. |
ippStsLengthErr |
Indicates an error condition that occurs because of one of the following:
|
Did you find the information on this page useful?
Feedback Message
Characters remaining: