HomeSort by: relevance | last modified time | path
    Searched refs:oiv (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/crypto/external/bsd/openssl.old/dist/crypto/evp/
evp_local.h 30 unsigned char oiv[EVP_MAX_IV_LENGTH]; /* original iv */ member in struct:evp_cipher_ctx_st
evp_lib.c 95 i = ASN1_TYPE_get_octetstring(type, c->oiv, l);
99 memcpy(c->iv, c->oiv, l);
112 i = ASN1_TYPE_set_octetstring(type, c->oiv, j);
257 return ctx->oiv;
evp_enc.c 184 memcpy(ctx->oiv, iv, EVP_CIPHER_CTX_iv_length(ctx));
185 memcpy(ctx->iv, ctx->oiv, EVP_CIPHER_CTX_iv_length(ctx));
  /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/
cipher_chacha20_hw.c 35 ctx->counter[i / 4] = CHACHA_U8TOU32(bctx->oiv + i);
cipher_tdes_common.c 96 memcpy(ctx->iv, ctx->oiv, ctx->ivlen);
ciphercommon.c 211 memcpy(ctx->iv, ctx->oiv, ctx->ivlen);
613 && !OSSL_PARAM_set_octet_ptr(p, &ctx->oiv, ctx->ivlen)
614 && !OSSL_PARAM_set_octet_string(p, &ctx->oiv, ctx->ivlen)) {
709 memcpy(ctx->oiv, iv, ivlen);
cipher_aes_cbc_hmac_sha.c 272 && !OSSL_PARAM_set_octet_string(p, ctx->base.oiv, ctx->base.ivlen)
273 && !OSSL_PARAM_set_octet_ptr(p, &ctx->base.oiv, ctx->base.ivlen)) {
cipher_des.c 89 memcpy(ctx->iv, ctx->oiv, ctx->ivlen);
cipher_aes_ocb.c 444 if (!OSSL_PARAM_set_octet_string(p, ctx->base.oiv, ctx->base.ivlen)
445 && !OSSL_PARAM_set_octet_ptr(p, &ctx->base.oiv, ctx->base.ivlen)) {
  /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/
cipher_chacha20_hw.c 35 ctx->counter[i / 4] = CHACHA_U8TOU32(bctx->oiv + i);
cipher_tdes_common.c 85 memcpy(ctx->iv, ctx->oiv, ctx->ivlen);
ciphercommon.c 210 memcpy(ctx->iv, ctx->oiv, ctx->ivlen);
591 && !OSSL_PARAM_set_octet_ptr(p, &ctx->oiv, ctx->ivlen)
592 && !OSSL_PARAM_set_octet_string(p, &ctx->oiv, ctx->ivlen)) {
687 memcpy(ctx->oiv, iv, ivlen);
cipher_aes_cbc_hmac_sha.c 274 && !OSSL_PARAM_set_octet_string(p, ctx->base.oiv, ctx->base.ivlen)
275 && !OSSL_PARAM_set_octet_ptr(p, &ctx->base.oiv, ctx->base.ivlen)) {
cipher_des.c 91 memcpy(ctx->iv, ctx->oiv, ctx->ivlen);
cipher_aes_ocb.c 448 if (!OSSL_PARAM_set_octet_string(p, ctx->base.oiv, ctx->base.ivlen)
449 && !OSSL_PARAM_set_octet_ptr(p, &ctx->base.oiv, ctx->base.ivlen)) {
  /src/crypto/external/apache2/openssl/dist/crypto/evp/
e_rc2.c 166 i = ASN1_TYPE_set_int_octetstring(type, num, c->oiv, j);
evp_lib.c 70 unsigned char *oiv = NULL; local
73 oiv = (unsigned char *)EVP_CIPHER_CTX_original_iv(c);
76 i = ASN1_TYPE_set_octetstring(type, oiv, j);
545 const unsigned char *v = ctx->oiv;
549 (void **)&v, sizeof(ctx->oiv));
evp_local.h 41 unsigned char oiv[EVP_MAX_IV_LENGTH]; /* original iv */ member in struct:evp_cipher_ctx_st
  /src/crypto/external/bsd/openssl/dist/crypto/evp/
e_rc2.c 165 i = ASN1_TYPE_set_int_octetstring(type, num, c->oiv, j);
evp_lib.c 69 unsigned char *oiv = NULL; local
72 oiv = (unsigned char *)EVP_CIPHER_CTX_original_iv(c);
75 i = ASN1_TYPE_set_octetstring(type, oiv, j);
556 const unsigned char *v = ctx->oiv;
561 (void **)&v, sizeof(ctx->oiv));
evp_local.h 42 unsigned char oiv[EVP_MAX_IV_LENGTH]; /* original iv */ member in struct:evp_cipher_ctx_st
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
evp.h 189 unsigned char oiv[EVP_MAX_IV_LENGTH]; member in struct:hc_CIPHER_CTX
evp.c 814 memcpy(ctx->oiv, iv, EVP_CIPHER_CTX_iv_length(ctx));
815 memcpy(ctx->iv, ctx->oiv, EVP_CIPHER_CTX_iv_length(ctx));
  /src/crypto/external/apache2/openssl/dist/providers/implementations/include/prov/
ciphercommon.h 51 unsigned char oiv[GENERIC_BLOCK_SIZE]; member in struct:prov_cipher_ctx_st
71 unsigned int iv_set : 1; /* Set when the iv is copied to the iv/oiv buffers */
  /src/crypto/external/bsd/openssl/dist/providers/implementations/include/prov/
ciphercommon.h 47 unsigned char oiv[GENERIC_BLOCK_SIZE]; member in struct:prov_cipher_ctx_st
67 unsigned int iv_set : 1; /* Set when the iv is copied to the iv/oiv buffers */

Completed in 44 milliseconds

1 2