HomeSort by: relevance | last modified time | path
    Searched refs:cipher_ctx (Results 1 - 11 of 11) sorted by relevancy

  /src/crypto/external/bsd/openssl.old/dist/crypto/engine/
eng_devcrypto.c 59 struct cipher_ctx { struct
152 struct cipher_ctx *cipher_ctx = local
153 (struct cipher_ctx *)EVP_CIPHER_CTX_get_cipher_data(ctx);
158 if (cipher_ctx->sess.ses != 0 &&
159 clean_devcrypto_session(&cipher_ctx->sess) == 0)
162 cipher_ctx->sess.cipher = cipher_d->devcryptoid;
163 cipher_ctx->sess.keylen = cipher_d->keylen;
164 cipher_ctx->sess.key = (void *)key;
165 cipher_ctx->op = enc ? COP_ENCRYPT : COP_DECRYPT
179 struct cipher_ctx *cipher_ctx = local
260 struct cipher_ctx *cipher_ctx = local
300 struct cipher_ctx *cipher_ctx = local
329 struct cipher_ctx *cipher_ctx = local
    [all...]
  /src/crypto/external/apache2/openssl/dist/engines/
e_devcrypto.c 107 struct cipher_ctx { struct
209 struct cipher_ctx *cipher_ctx = (struct cipher_ctx *)EVP_CIPHER_CTX_get_cipher_data(ctx); local
214 if (cipher_ctx->sess.ses != 0 && clean_devcrypto_session(&cipher_ctx->sess) == 0)
217 cipher_ctx->sess.cipher = cipher_d->devcryptoid;
218 cipher_ctx->sess.keylen = cipher_d->keylen;
219 cipher_ctx->sess.key = (void *)key;
220 cipher_ctx->op = enc ? COP_ENCRYPT : COP_DECRYPT
240 struct cipher_ctx *cipher_ctx = (struct cipher_ctx *)EVP_CIPHER_CTX_get_cipher_data(ctx); local
320 struct cipher_ctx *cipher_ctx = (struct cipher_ctx *)EVP_CIPHER_CTX_get_cipher_data(ctx); local
360 struct cipher_ctx *cipher_ctx = (struct cipher_ctx *)EVP_CIPHER_CTX_get_cipher_data(ctx); local
388 struct cipher_ctx *cipher_ctx = (struct cipher_ctx *)EVP_CIPHER_CTX_get_cipher_data(ctx); local
    [all...]
  /src/crypto/external/bsd/openssl/dist/engines/
e_devcrypto.c 105 struct cipher_ctx { struct
207 struct cipher_ctx *cipher_ctx = local
208 (struct cipher_ctx *)EVP_CIPHER_CTX_get_cipher_data(ctx);
214 if (cipher_ctx->sess.ses != 0 &&
215 clean_devcrypto_session(&cipher_ctx->sess) == 0)
218 cipher_ctx->sess.cipher = cipher_d->devcryptoid;
219 cipher_ctx->sess.keylen = cipher_d->keylen;
220 cipher_ctx->sess.key = (void *)key;
221 cipher_ctx->op = enc ? COP_ENCRYPT : COP_DECRYPT
243 struct cipher_ctx *cipher_ctx = local
324 struct cipher_ctx *cipher_ctx = local
364 struct cipher_ctx *cipher_ctx = local
394 struct cipher_ctx *cipher_ctx = local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/modes/
siv128.c 176 EVP_CIPHER_CTX_free(ctx->cipher_ctx);
180 ctx->cipher_ctx = NULL;
193 if ((ctx->cipher_ctx = EVP_CIPHER_CTX_new()) == NULL
197 || !EVP_EncryptInit_ex(ctx->cipher_ctx, ctr, NULL, key + klen, NULL)
202 EVP_CIPHER_CTX_free(ctx->cipher_ctx);
203 ctx->cipher_ctx = NULL;
225 if (dest->cipher_ctx == NULL) {
226 dest->cipher_ctx = EVP_CIPHER_CTX_new();
227 if (dest->cipher_ctx == NULL)
230 if (!EVP_CIPHER_CTX_copy(dest->cipher_ctx, src->cipher_ctx)
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/modes/
siv128.c 177 EVP_CIPHER_CTX_free(ctx->cipher_ctx);
181 ctx->cipher_ctx = NULL;
194 if ((ctx->cipher_ctx = EVP_CIPHER_CTX_new()) == NULL
199 || !EVP_EncryptInit_ex(ctx->cipher_ctx, ctr, NULL, key + klen, NULL)
204 EVP_CIPHER_CTX_free(ctx->cipher_ctx);
224 if (dest->cipher_ctx == NULL) {
225 dest->cipher_ctx = EVP_CIPHER_CTX_new();
226 if (dest->cipher_ctx == NULL)
229 if (!EVP_CIPHER_CTX_copy(dest->cipher_ctx, src->cipher_ctx))
    [all...]
  /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/
cipher_aes_siv_hw.c 72 out->siv.cipher_ctx = NULL;
  /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/
cipher_aes_siv_hw.c 65 out->siv.cipher_ctx = NULL;
  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_wire_pkt.c 38 hpr->cipher_ctx = EVP_CIPHER_CTX_new();
39 if (hpr->cipher_ctx == NULL) {
51 if (!EVP_CipherInit_ex(hpr->cipher_ctx, hpr->cipher, NULL,
69 EVP_CIPHER_CTX_free(hpr->cipher_ctx);
70 hpr->cipher_ctx = NULL;
92 if (!EVP_CipherInit_ex(hpr->cipher_ctx, NULL, NULL, NULL, NULL, 1)
93 || !EVP_CipherUpdate(hpr->cipher_ctx, dst, &l, sample, 16)) {
106 if (!EVP_CipherInit_ex(hpr->cipher_ctx, NULL, NULL, NULL, sample, 1)
107 || !EVP_CipherUpdate(hpr->cipher_ctx, mask, &l,
  /src/crypto/external/apache2/openssl/dist/include/internal/
quic_wire_pkt.h 160 EVP_CIPHER_CTX *cipher_ctx; member in struct:quic_hdr_protector_st
  /src/crypto/external/apache2/openssl/dist/include/crypto/
modes.h 224 EVP_CIPHER_CTX *cipher_ctx; member in struct:siv128_context
  /src/crypto/external/bsd/openssl/dist/include/crypto/
modes.h 216 EVP_CIPHER_CTX *cipher_ctx; member in struct:siv128_context

Completed in 46 milliseconds