Searched refs:do_cipher (Results 1 – 8 of 8) sorted by relevance
/freebsd/crypto/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 | 576 i = ctx->cipher->do_cipher(ctx, out, in, inl); in evp_EncryptDecryptUpdate() 594 if (ctx->cipher->do_cipher(ctx, out, in, inl)) { in evp_EncryptDecryptUpdate() 627 if (!ctx->cipher->do_cipher(ctx, out, ctx->buf, bl)) in evp_EncryptDecryptUpdate() 637 if (!ctx->cipher->do_cipher(ctx, out, in, inl)) in evp_EncryptDecryptUpdate() 762 ret = ctx->cipher->do_cipher(ctx, out, NULL, 0); in EVP_EncryptFinal_ex() 789 ret = ctx->cipher->do_cipher(ctx, out, ctx->buf, b); in EVP_EncryptFinal_ex() 859 fix_len = ctx->cipher->do_cipher(ctx, out, in, inl); in EVP_DecryptUpdate() 985 i = ctx->cipher->do_cipher(ctx, out, NULL, 0); in EVP_DecryptFinal_ex()
|
H A D | evp_lib.c | 434 return ctx->cipher->do_cipher(ctx, out, in, inl); in EVP_Cipher()
|
/freebsd/crypto/openssh/ |
H A D | cipher-aes.c | 154 rijndal_cbc.do_cipher = ssh_rijndael_cbc; in evp_rijndael()
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | EVP_CIPHER_meth_new.pod | 37 int (*do_cipher)(EVP_CIPHER_CTX *ctx,
|
/freebsd/crypto/openssl/include/crypto/ |
H A D | evp.h | 307 int (*do_cipher) (EVP_CIPHER_CTX *ctx, unsigned char *out, member
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | evp.h | 253 int (*do_cipher) (EVP_CIPHER_CTX *ctx,
|
/freebsd/crypto/openssl/ |
H A D | CHANGES.md | 5264 underlying do_cipher function handles all cipher semantics itself 5267 do_cipher is subtly changed if this flag is set: the return value
|