/third_party/curl/tests/ |
H A D | test971.pl | 71 $oiv{$flag} = $version; 102 if($oiv{$c}) { 104 versioncheck($c, $oiv{$c});
|
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/ |
H A D | ciphercommon.c | 210 memcpy(ctx->iv, ctx->oiv, ctx->ivlen); in cipher_generic_init_internal() 591 && !OSSL_PARAM_set_octet_ptr(p, &ctx->oiv, ctx->ivlen) in ossl_cipher_generic_get_ctx_params() 592 && !OSSL_PARAM_set_octet_string(p, &ctx->oiv, ctx->ivlen)) { in ossl_cipher_generic_get_ctx_params() 687 memcpy(ctx->oiv, iv, ivlen); in ossl_cipher_generic_initiv()
|
H A D | cipher_chacha20_hw.c | 35 ctx->counter[i / 4] = CHACHA_U8TOU32(bctx->oiv + i); in chacha20_initiv()
|
H A D | cipher_tdes_common.c | 85 memcpy(ctx->iv, ctx->oiv, ctx->ivlen); in tdes_init()
|
H A D | cipher_aes_cbc_hmac_sha.c | 274 && !OSSL_PARAM_set_octet_string(p, ctx->base.oiv, ctx->base.ivlen) in aes_get_ctx_params() 275 && !OSSL_PARAM_set_octet_ptr(p, &ctx->base.oiv, ctx->base.ivlen)) { in aes_get_ctx_params()
|
H A D | cipher_aes_ocb.c | 440 if (!OSSL_PARAM_set_octet_string(p, ctx->base.oiv, ctx->base.ivlen) in aes_ocb_get_ctx_params() 441 && !OSSL_PARAM_set_octet_ptr(p, &ctx->base.oiv, ctx->base.ivlen)) { in aes_ocb_get_ctx_params()
|
H A D | cipher_des.c | 91 memcpy(ctx->iv, ctx->oiv, ctx->ivlen); in des_init()
|
H A D | cipher_chacha20_poly1305_hw.c | 89 memcpy(tempiv + CHACHA_CTR_SIZE - noncelen, bctx->oiv, in chacha20_poly1305_initiv()
|
/third_party/openssl/providers/implementations/ciphers/ |
H A D | ciphercommon.c | 207 memcpy(ctx->iv, ctx->oiv, ctx->ivlen); in cipher_generic_init_internal() 560 && !OSSL_PARAM_set_octet_ptr(p, &ctx->oiv, ctx->ivlen) in ossl_cipher_generic_get_ctx_params() 561 && !OSSL_PARAM_set_octet_string(p, &ctx->oiv, ctx->ivlen)) { in ossl_cipher_generic_get_ctx_params() 656 memcpy(ctx->oiv, iv, ivlen); in ossl_cipher_generic_initiv()
|
H A D | cipher_chacha20_hw.c | 35 ctx->counter[i / 4] = CHACHA_U8TOU32(bctx->oiv + i); in chacha20_initiv()
|
H A D | cipher_tdes_common.c | 85 memcpy(ctx->iv, ctx->oiv, ctx->ivlen); in tdes_init()
|
H A D | cipher_aes_ocb.c | 437 if (!OSSL_PARAM_set_octet_string(p, ctx->base.oiv, ctx->base.ivlen) in aes_ocb_get_ctx_params() 438 && !OSSL_PARAM_set_octet_ptr(p, &ctx->base.oiv, ctx->base.ivlen)) { in aes_ocb_get_ctx_params()
|
H A D | cipher_aes_cbc_hmac_sha.c | 274 && !OSSL_PARAM_set_octet_string(p, ctx->base.oiv, ctx->base.ivlen) in aes_get_ctx_params() 275 && !OSSL_PARAM_set_octet_ptr(p, &ctx->base.oiv, ctx->base.ivlen)) { in aes_get_ctx_params()
|
H A D | cipher_des.c | 91 memcpy(ctx->iv, ctx->oiv, ctx->ivlen); in des_init()
|
H A D | cipher_chacha20_poly1305_hw.c | 89 memcpy(tempiv + CHACHA_CTR_SIZE - noncelen, bctx->oiv, in chacha20_poly1305_initiv()
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | evp_lib.c | 69 unsigned char *oiv = NULL; in EVP_CIPHER_set_asn1_iv() local 72 oiv = (unsigned char *)EVP_CIPHER_CTX_original_iv(c); in EVP_CIPHER_set_asn1_iv() 75 i = ASN1_TYPE_set_octetstring(type, oiv, j); in EVP_CIPHER_set_asn1_iv() 556 const unsigned char *v = ctx->oiv; in EVP_CIPHER_CTX_original_iv() 561 (void **)&v, sizeof(ctx->oiv)); in EVP_CIPHER_CTX_original_iv()
|
H A D | e_rc2.c | 165 i = ASN1_TYPE_set_int_octetstring(type, num, c->oiv, j); in rc2_set_asn1_type_and_iv()
|
H A D | evp_local.h | 42 unsigned char oiv[EVP_MAX_IV_LENGTH]; /* original iv */ member
|
H A D | evp_enc.c | 402 memcpy(ctx->oiv, iv, n); in evp_cipher_init_internal() 403 memcpy(ctx->iv, ctx->oiv, n); in evp_cipher_init_internal()
|
/third_party/openssl/crypto/evp/ |
H A D | evp_lib.c | 69 unsigned char *oiv = NULL; in EVP_CIPHER_set_asn1_iv() local 72 oiv = (unsigned char *)EVP_CIPHER_CTX_original_iv(c); in EVP_CIPHER_set_asn1_iv() 75 i = ASN1_TYPE_set_octetstring(type, oiv, j); in EVP_CIPHER_set_asn1_iv() 556 const unsigned char *v = ctx->oiv; in EVP_CIPHER_CTX_original_iv() 561 (void **)&v, sizeof(ctx->oiv)); in EVP_CIPHER_CTX_original_iv()
|
H A D | e_rc2.c | 165 i = ASN1_TYPE_set_int_octetstring(type, num, c->oiv, j); in rc2_set_asn1_type_and_iv()
|
H A D | evp_local.h | 42 unsigned char oiv[EVP_MAX_IV_LENGTH]; /* original iv */ member
|
H A D | evp_enc.c | 397 memcpy(ctx->oiv, iv, n); in evp_cipher_init_internal() 398 memcpy(ctx->iv, ctx->oiv, n); in evp_cipher_init_internal()
|
/third_party/node/deps/openssl/openssl/providers/implementations/include/prov/ |
H A D | ciphercommon.h | 60 unsigned int iv_set : 1; /* Set when the iv is copied to the iv/oiv buffers */ 88 unsigned char oiv[GENERIC_BLOCK_SIZE]; member
|
/third_party/openssl/providers/implementations/include/prov/ |
H A D | ciphercommon.h | 60 unsigned int iv_set : 1; /* Set when the iv is copied to the iv/oiv buffers */ 87 unsigned char oiv[GENERIC_BLOCK_SIZE]; member
|