Searched refs:do_cipher (Results 1 – 7 of 7) sorted by relevance
/openssl/crypto/evp/ |
H 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()
|
H A D | evp_enc.c | 585 i = ctx->cipher->do_cipher(ctx, out, in, inl); in evp_EncryptDecryptUpdate() 603 if (ctx->cipher->do_cipher(ctx, out, in, inl)) { in evp_EncryptDecryptUpdate() 636 if (!ctx->cipher->do_cipher(ctx, out, ctx->buf, bl)) in evp_EncryptDecryptUpdate() 646 if (!ctx->cipher->do_cipher(ctx, out, in, inl)) in evp_EncryptDecryptUpdate() 771 ret = ctx->cipher->do_cipher(ctx, out, NULL, 0); in EVP_EncryptFinal_ex() 798 ret = ctx->cipher->do_cipher(ctx, out, ctx->buf, b); in EVP_EncryptFinal_ex() 868 fix_len = ctx->cipher->do_cipher(ctx, out, in, inl); in EVP_DecryptUpdate() 994 i = ctx->cipher->do_cipher(ctx, out, NULL, 0); in EVP_DecryptFinal_ex()
|
H A D | evp_lib.c | 419 return ctx->cipher->do_cipher(ctx, out, in, inl); in EVP_Cipher()
|
/openssl/doc/man3/ |
H A D | EVP_CIPHER_meth_new.pod | 37 int (*do_cipher)(EVP_CIPHER_CTX *ctx,
|
/openssl/include/crypto/ |
H A D | evp.h | 316 int (*do_cipher) (EVP_CIPHER_CTX *ctx, unsigned char *out, member
|
/openssl/include/openssl/ |
H A D | evp.h | 256 int (*do_cipher) (EVP_CIPHER_CTX *ctx,
|
/openssl/ |
H A D | CHANGES.md | 6239 underlying do_cipher function handles all cipher semantics itself 6242 do_cipher is subtly changed if this flag is set: the return value
|
Completed in 68 milliseconds