| /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| evp-hcrypto.c | 69 AES_KEY *k = ctx->cipher_data; 83 AES_KEY *k = ctx->cipher_data; 416 DES_key_schedule *k = ctx->cipher_data; 429 DES_key_schedule *k = ctx->cipher_data; 478 struct des_ede3_cbc *k = ctx->cipher_data; 502 struct des_ede3_cbc *k = ctx->cipher_data; 553 struct rc2_cbc *k = ctx->cipher_data; 568 struct rc2_cbc *k = ctx->cipher_data; 666 CAMELLIA_KEY *k = ctx->cipher_data; 678 CAMELLIA_KEY *k = ctx->cipher_data; [all...] |
| evp-crypt.c | 66 struct generic_key *gk = ctx->cipher_data; 87 struct generic_key *gk = ctx->cipher_data; 127 struct generic_key *gk = ctx->cipher_data;
|
| evp-cc.c | 74 struct cc_key *cc = ctx->cipher_data; 93 struct cc_key *cc = ctx->cipher_data; 146 struct cc_key *cc = ctx->cipher_data; 199 struct cc_key *cc = ctx->cipher_data; 251 struct cc_key *cc = ctx->cipher_data; 373 struct cc_key *cc = ctx->cipher_data; 495 struct cc_key *cc = ctx->cipher_data; 839 struct cc_key *cc = ctx->cipher_data;
|
| evp-openssl.c | 114 struct ossl_cipher_ctx *ossl_ctx = ctx->cipher_data; /* EVP_CIPHER_CTX wrapper */ 160 struct ossl_cipher_ctx *ossl_ctx = ctx->cipher_data; 169 struct ossl_cipher_ctx *ossl_ctx = ctx->cipher_data; 186 struct ossl_cipher_ctx *ossl_ctx = ctx->cipher_data;
|
| evp.c | 595 if (c->cipher_data) { 597 memset(c->cipher_data, 0, c->cipher->ctx_size); 598 free(c->cipher_data); 599 c->cipher_data = NULL; 792 ctx->cipher_data = calloc(1, c->ctx_size); 793 if (ctx->cipher_data == NULL && c->ctx_size != 0)
|
| evp-pkcs11.c | 319 struct pkcs11_cipher_ctx *p11ctx = (struct pkcs11_cipher_ctx *)ctx->cipher_data; 371 struct pkcs11_cipher_ctx *p11ctx = (struct pkcs11_cipher_ctx *)ctx->cipher_data; 390 struct pkcs11_cipher_ctx *p11ctx = (struct pkcs11_cipher_ctx *)ctx->cipher_data;
|
| evp-wincng.c | 62 struct wincng_key *cng = ctx->cipher_data; 99 struct wincng_key *cng = ctx->cipher_data; 192 struct wincng_key *cng = ctx->cipher_data;
|
| evp.h | 196 void *cipher_data; member in struct:hc_CIPHER_CTX
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/engine/ |
| eng_devcrypto.c | 76 } cipher_data[] = { variable in typeref:struct:cipher_data_st 126 for (i = 0; i < OSSL_NELEM(cipher_data); i++) 127 if (nid == cipher_data[i].nid) 141 return &cipher_data[get_cipher_data_index(nid)]; 338 * cipher_data[] above, which known_cipher_methods[] is. 340 static int known_cipher_nids[OSSL_NELEM(cipher_data)]; 342 static EVP_CIPHER *known_cipher_methods[OSSL_NELEM(cipher_data)] = { NULL, }; 354 i < OSSL_NELEM(cipher_data); i++) { 360 sess.cipher = cipher_data[i].devcryptoid; 361 sess.keylen = cipher_data[i].keylen [all...] |
| /src/crypto/external/apache2/openssl/dist/engines/ |
| e_devcrypto.c | 124 } cipher_data[] = { variable in typeref:struct:cipher_data_st 174 for (i = 0; i < OSSL_NELEM(cipher_data); i++) 175 if (nid == cipher_data[i].nid) 198 return &cipher_data[get_cipher_data_index(nid)]; 397 * cipher_data[] above, which the other tables are. 399 static int known_cipher_nids[OSSL_NELEM(cipher_data)]; 401 static EVP_CIPHER *known_cipher_methods[OSSL_NELEM(cipher_data)] = { 404 static int selected_ciphers[OSSL_NELEM(cipher_data)]; 405 static struct driver_info_st cipher_driver_info[OSSL_NELEM(cipher_data)]; 437 i < OSSL_NELEM(cipher_data); i++) [all...] |
| /src/crypto/external/bsd/openssl/dist/engines/ |
| e_devcrypto.c | 122 } cipher_data[] = { variable in typeref:struct:cipher_data_st 172 for (i = 0; i < OSSL_NELEM(cipher_data); i++) 173 if (nid == cipher_data[i].nid) 196 return &cipher_data[get_cipher_data_index(nid)]; 404 * cipher_data[] above, which the other tables are. 406 static int known_cipher_nids[OSSL_NELEM(cipher_data)]; 408 static EVP_CIPHER *known_cipher_methods[OSSL_NELEM(cipher_data)] = { NULL, }; 409 static int selected_ciphers[OSSL_NELEM(cipher_data)]; 410 static struct driver_info_st cipher_driver_info[OSSL_NELEM(cipher_data)]; 443 i < OSSL_NELEM(cipher_data); i++) [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/evp/ |
| evp_local.h | 38 void *cipher_data; /* per EVP data */ member in struct:evp_cipher_ctx_st
|
| evp_enc.c | 30 if (c->cipher_data && c->cipher->ctx_size) 31 OPENSSL_cleanse(c->cipher_data, c->cipher->ctx_size); 33 OPENSSL_free(c->cipher_data); 92 || ctx->cipher_data) { 129 ctx->cipher_data = OPENSSL_zalloc(ctx->cipher->ctx_size); 130 if (ctx->cipher_data == NULL) { 136 ctx->cipher_data = NULL; 702 if (in->cipher_data && in->cipher->ctx_size) { 703 out->cipher_data = OPENSSL_malloc(in->cipher->ctx_size); 704 if (out->cipher_data == NULL) [all...] |
| evp_lib.c | 225 return ctx->cipher_data; 228 void *EVP_CIPHER_CTX_set_cipher_data(EVP_CIPHER_CTX *ctx, void *cipher_data) 232 old_cipher_data = ctx->cipher_data; 233 ctx->cipher_data = cipher_data;
|
| e_chacha20_poly1305.c | 31 #define data(ctx) ((EVP_CHACHA_KEY *)(ctx)->cipher_data) 162 # define aead_data(ctx) ((EVP_CHACHA_AEAD_CTX *)(ctx)->cipher_data) 496 OPENSSL_cleanse(ctx->cipher_data, sizeof(*actx) + Poly1305_ctx_size()); 508 actx = ctx->cipher_data 528 dst->cipher_data = 530 if (dst->cipher_data == NULL) {
|
| /src/crypto/external/bsd/openssl/dist/crypto/evp/ |
| evp_enc.c | 57 if (ctx->cipher_data && ctx->cipher->ctx_size) 58 OPENSSL_cleanse(ctx->cipher_data, ctx->cipher->ctx_size); 60 OPENSSL_free(ctx->cipher_data); 156 OPENSSL_clear_free(ctx->cipher_data, ctx->cipher->ctx_size); 157 ctx->cipher_data = NULL; 344 ctx->cipher_data = OPENSSL_zalloc(ctx->cipher->ctx_size); 345 if (ctx->cipher_data == NULL) { 351 ctx->cipher_data = NULL; 1456 if (in->cipher_data && in->cipher->ctx_size) { 1457 out->cipher_data = OPENSSL_malloc(in->cipher->ctx_size) [all...] |
| e_chacha20_poly1305.c | 32 #define data(ctx) ((EVP_CHACHA_KEY *)(ctx)->cipher_data) 164 # define aead_data(ctx) ((EVP_CHACHA_AEAD_CTX *)(ctx)->cipher_data) 492 OPENSSL_cleanse(ctx->cipher_data, sizeof(*actx) + Poly1305_ctx_size()); 504 actx = ctx->cipher_data 524 dst->cipher_data = 526 if (dst->cipher_data == NULL) {
|
| evp_lib.c | 487 return ctx->cipher_data; 490 void *EVP_CIPHER_CTX_set_cipher_data(EVP_CIPHER_CTX *ctx, void *cipher_data) 494 old_cipher_data = ctx->cipher_data; 495 ctx->cipher_data = cipher_data;
|
| /src/crypto/external/apache2/openssl/dist/crypto/evp/ |
| e_chacha20_poly1305.c | 32 #define data(ctx) ((EVP_CHACHA_KEY *)(ctx)->cipher_data) 167 #define aead_data(ctx) ((EVP_CHACHA_AEAD_CTX *)(ctx)->cipher_data) 493 OPENSSL_cleanse(ctx->cipher_data, sizeof(*actx) + Poly1305_ctx_size()); 505 actx = ctx->cipher_data 525 dst->cipher_data = OPENSSL_memdup(actx, sizeof(*actx) + Poly1305_ctx_size()); 526 if (dst->cipher_data == NULL) {
|
| evp_enc.c | 60 if (ctx->cipher_data && ctx->cipher->ctx_size) 61 OPENSSL_cleanse(ctx->cipher_data, ctx->cipher->ctx_size); 63 OPENSSL_free(ctx->cipher_data); 167 OPENSSL_clear_free(ctx->cipher_data, ctx->cipher->ctx_size); 168 ctx->cipher_data = NULL; 387 ctx->cipher_data = OPENSSL_zalloc(ctx->cipher->ctx_size); 388 if (ctx->cipher_data == NULL) { 393 ctx->cipher_data = NULL; 521 OPENSSL_clear_free(ctx->cipher_data, ctx->cipher->ctx_size); 522 ctx->cipher_data = NULL [all...] |
| evp_lib.c | 472 return ctx->cipher_data; 475 void *EVP_CIPHER_CTX_set_cipher_data(EVP_CIPHER_CTX *ctx, void *cipher_data) 479 old_cipher_data = ctx->cipher_data; 480 ctx->cipher_data = cipher_data;
|
| /src/crypto/external/apache2/openssl/dist/ssl/ |
| ssl_asn1.c | 115 unsigned char cipher_data[2]; 150 cipher_data[0] = ((unsigned char)(l >> 8L)) & 0xff; 151 cipher_data[1] = ((unsigned char)(l)) & 0xff; 153 ssl_session_oinit(&as.cipher, &cipher, cipher_data, 2);
|
| /src/crypto/external/bsd/openssl/dist/ssl/ |
| ssl_asn1.c | 112 unsigned char cipher_data[2]; 145 cipher_data[0] = ((unsigned char)(l >> 8L)) & 0xff; 146 cipher_data[1] = ((unsigned char)(l)) & 0xff; 148 ssl_session_oinit(&as.cipher, &cipher, cipher_data, 2);
|
| /src/crypto/external/bsd/openssl.old/dist/ssl/ |
| ssl_asn1.c | 110 unsigned char cipher_data[2]; 141 cipher_data[0] = ((unsigned char)(l >> 8L)) & 0xff; 142 cipher_data[1] = ((unsigned char)(l)) & 0xff; 144 ssl_session_oinit(&as.cipher, &cipher, cipher_data, 2);
|
| /src/crypto/external/bsd/openssl.old/dist/engines/ |
| e_dasync.c | 640 void *cipher_data = OPENSSL_malloc(data_size); local 642 if (cipher_data == NULL) 644 memcpy(cipher_data, pipe_ctx->inner_cipher_data, data_size); 645 pipe_ctx->inner_cipher_data = cipher_data;
|