Home
last modified time | relevance | path

Searched refs:aes_decrypt (Results 1 – 17 of 17) sorted by relevance

/src/crypto/krb5/src/lib/crypto/builtin/aes/
H A Daes-gen.c109 r = aes_decrypt(output, tmp, &fipsctx); in fips_test()
140 r = aes_decrypt(in + i, out + i, &dctx); in ecb_dec()
179 r = aes_decrypt(in + i, tmp, &dctx); in cbc_dec()
246 r = aes_decrypt(cn1, pn, &dctx); in cts_dec()
252 r = aes_decrypt(cn, pn1, &dctx); in cts_dec()
H A Daes.h28 #define aes_decrypt k5_aes_decrypt macro
172 AES_RETURN aes_decrypt(const unsigned char *in, unsigned char *out, const aes_decrypt_ctx cx[1]);
H A Daes.txt524 aes_decrypt(const unsigned char *in, unsigned char *out,
/src/sys/kgssapi/krb5/
H A Dkcrypto_aes.c252 aes_decrypt(const struct krb5_key_state *ks, struct mbuf *inout, in aes_decrypt() function
366 aes_decrypt,
384 aes_decrypt,
/src/contrib/wpa/src/crypto/
H A Daes.h18 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
H A Daes-unwrap.c61 aes_decrypt(ctx, b, b); in aes_unwrap()
H A Daes-cbc.c78 aes_decrypt(ctx, pos, pos); in aes_128_cbc_decrypt()
H A Dcrypto_nettle.c16 #undef aes_decrypt
292 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
H A Daes-internal-dec.c151 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
H A Dcrypto_internal-cipher.c186 aes_decrypt(ctx->u.aes.ctx_dec, crypt, plain); in crypto_cipher_decrypt()
H A Dcrypto.h153 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
H A Dcrypto_gnutls.c271 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
H A Dcrypto_libtomcrypt.c129 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
H A Dcrypto_linux.c523 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
H A Dcrypto_wolfssl.c628 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
H A Dcrypto_openssl.c545 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
/src/crypto/krb5/src/lib/crypto/builtin/enc_provider/
H A Daes.c231 if (aes_decrypt(data, data, &CACHE(key)->dec_ctx) != EXIT_SUCCESS) in cbc_dec()