/hardware/qcom/msm8996/original-kernel-headers/linux/ |
qcedev.h | 153 * @ivlen (IN): Length of the IV 192 uint32_t ivlen; member in struct:qcedev_cipher_op_req
|
/external/boringssl/src/crypto/cipher/ |
e_aes.c | 91 int ivlen; /* IV length */ member in struct:__anon6656 483 CRYPTO_gcm128_setiv(&gctx->gcm, &gctx->ks.ks, iv, gctx->ivlen); 490 CRYPTO_gcm128_setiv(&gctx->gcm, &gctx->ks.ks, iv, gctx->ivlen); 492 memcpy(gctx->iv, iv, gctx->ivlen); 530 gctx->ivlen = c->cipher->iv_len; 542 if (arg > EVP_MAX_IV_LENGTH && arg > gctx->ivlen) { 551 gctx->ivlen = arg; 572 memcpy(gctx->iv, ptr, gctx->ivlen); 578 if (arg < 4 || (gctx->ivlen - arg) < 8) { 584 if (c->encrypt && !RAND_bytes(gctx->iv + arg, gctx->ivlen - arg)) [all...] |