Searched refs:ptlen (Results 1 – 2 of 2) sorted by relevance
| /xnu-10063.141.1/libkern/crypto/ |
| H A D | corecrypto_aesxts.c | 74 xts_encrypt(const uint8_t *pt, unsigned long ptlen, in xts_encrypt() argument 82 if (ptlen % 16) { in xts_encrypt() 91 xtsenc->xts(xts->enc, tweak, ptlen / 16, pt, ct); in xts_encrypt() 96 xts_decrypt(const uint8_t *ct, unsigned long ptlen, in xts_decrypt() argument 104 if (ptlen % 16) { in xts_decrypt() 113 xtsdec->xts(xts->dec, tweak, ptlen / 16, ct, pt); in xts_decrypt()
|
| /xnu-10063.141.1/libkern/libkern/crypto/ |
| H A D | aesxts.h | 64 int xts_encrypt(const uint8_t *pt, unsigned long ptlen, 69 int xts_decrypt(const uint8_t *ct, unsigned long ptlen,
|