Searched refs:do_cipher (Results 1 – 9 of 9) sorted by relevance
| /freebsd-12.1/crypto/openssl/crypto/evp/ |
| H A D | cmeth_lib.c | 72 int (*do_cipher) (EVP_CIPHER_CTX *ctx, in EVP_CIPHER_meth_set_do_cipher() 77 cipher->do_cipher = do_cipher; in EVP_CIPHER_meth_set_do_cipher() 125 return cipher->do_cipher; in EVP_CIPHER_meth_get_do_cipher()
|
| H A D | evp_enc.c | 315 i = ctx->cipher->do_cipher(ctx, out, in, inl); in evp_EncryptDecryptUpdate() 333 if (ctx->cipher->do_cipher(ctx, out, in, inl)) { in evp_EncryptDecryptUpdate() 354 if (!ctx->cipher->do_cipher(ctx, out, ctx->buf, bl)) in evp_EncryptDecryptUpdate() 364 if (!ctx->cipher->do_cipher(ctx, out, in, inl)) in evp_EncryptDecryptUpdate() 407 ret = ctx->cipher->do_cipher(ctx, out, NULL, 0); in EVP_EncryptFinal_ex() 435 ret = ctx->cipher->do_cipher(ctx, out, ctx->buf, b); in EVP_EncryptFinal_ex() 466 fix_len = ctx->cipher->do_cipher(ctx, out, in, inl); in EVP_DecryptUpdate() 539 i = ctx->cipher->do_cipher(ctx, out, NULL, 0); in EVP_DecryptFinal_ex()
|
| H A D | evp_lib.c | 195 return ctx->cipher->do_cipher(ctx, out, in, inl); in EVP_Cipher()
|
| /freebsd-12.1/crypto/openssh/ |
| H A D | cipher-ctr.c | 138 aes_ctr.do_cipher = ssh_aes_ctr; in evp_aes_128_ctr()
|
| H A D | cipher-aes.c | 154 rijndal_cbc.do_cipher = ssh_rijndael_cbc; in evp_rijndael()
|
| /freebsd-12.1/crypto/openssl/crypto/include/internal/ |
| H A D | evp_int.h | 143 int (*do_cipher) (EVP_CIPHER_CTX *ctx, unsigned char *out, member
|
| /freebsd-12.1/crypto/openssl/doc/man3/ |
| H A D | EVP_CIPHER_meth_new.pod | 32 int (*do_cipher)(EVP_CIPHER_CTX *ctx,
|
| /freebsd-12.1/crypto/openssl/include/openssl/ |
| H A D | evp.h | 198 int (*do_cipher) (EVP_CIPHER_CTX *ctx,
|
| /freebsd-12.1/crypto/openssl/ |
| H A D | CHANGES | 2108 underlying do_cipher function handles all cipher semantics itself 2111 do_cipher is subtly changed if this flag is set: the return value
|