Searched refs:do_cipher (Results 1 – 7 of 7) sorted by relevance
/openssl-master/crypto/evp/ |
A D | cmeth_lib.c | 107 int (*do_cipher) (EVP_CIPHER_CTX *ctx, in EVP_CIPHER_meth_set_do_cipher() 112 if (cipher->do_cipher != NULL) in EVP_CIPHER_meth_set_do_cipher() 115 cipher->do_cipher = do_cipher; in EVP_CIPHER_meth_set_do_cipher() 175 return cipher->do_cipher; in EVP_CIPHER_meth_get_do_cipher()
|
A D | evp_enc.c | 521 i = ctx->cipher->do_cipher(ctx, out, in, inl); in evp_EncryptDecryptUpdate() 539 if (ctx->cipher->do_cipher(ctx, out, in, inl)) { in evp_EncryptDecryptUpdate() 572 if (!ctx->cipher->do_cipher(ctx, out, ctx->buf, bl)) in evp_EncryptDecryptUpdate() 582 if (!ctx->cipher->do_cipher(ctx, out, in, inl)) in evp_EncryptDecryptUpdate() 706 ret = ctx->cipher->do_cipher(ctx, out, NULL, 0); in EVP_EncryptFinal_ex() 733 ret = ctx->cipher->do_cipher(ctx, out, ctx->buf, b); in EVP_EncryptFinal_ex() 803 fix_len = ctx->cipher->do_cipher(ctx, out, in, inl); in EVP_DecryptUpdate() 929 i = ctx->cipher->do_cipher(ctx, out, NULL, 0); in EVP_DecryptFinal_ex()
|
A D | evp_lib.c | 434 return ctx->cipher->do_cipher(ctx, out, in, inl); in EVP_Cipher()
|
/openssl-master/doc/man3/ |
A D | EVP_CIPHER_meth_new.pod | 37 int (*do_cipher)(EVP_CIPHER_CTX *ctx,
|
/openssl-master/include/crypto/ |
A D | evp.h | 307 int (*do_cipher) (EVP_CIPHER_CTX *ctx, unsigned char *out, member
|
/openssl-master/include/openssl/ |
A D | evp.h | 251 int (*do_cipher) (EVP_CIPHER_CTX *ctx,
|
/openssl-master/ |
A D | CHANGES.md | 4300 underlying do_cipher function handles all cipher semantics itself 4303 do_cipher is subtly changed if this flag is set: the return value
|
Completed in 36 milliseconds