Searched refs:aes (Results 1 - 25 of 69) sorted by path

123

/freebsd-11-stable/contrib/wpa/src/crypto/
H A Daes-ccm.c13 #include "aes.h"
28 static void aes_ccm_auth_start(void *aes, size_t M, size_t L, const u8 *nonce, argument
44 aes_encrypt(aes, b, x); /* X_1 = E(K, B_0) */
54 aes_encrypt(aes, aad_buf, x); /* X_2 = E(K, X_1 XOR B_1) */
59 aes_encrypt(aes, &aad_buf[AES_BLOCK_SIZE], x);
64 static void aes_ccm_auth(void *aes, const u8 *data, size_t len, u8 *x) argument
73 aes_encrypt(aes, x, x);
79 aes_encrypt(aes, x, x);
92 static void aes_ccm_encr(void *aes, size_t L, const u8 *in, size_t len, u8 *out, argument
102 aes_encrypt(aes,
117 aes_ccm_encr_auth(void *aes, size_t M, u8 *x, u8 *a, u8 *auth) argument
132 aes_ccm_decr_auth(void *aes, size_t M, u8 *a, const u8 *auth, u8 *t) argument
153 void *aes; local
183 void *aes; local
[all...]
H A Daes-gcm.c13 #include "aes.h"
143 static void aes_gctr(void *aes, const u8 *icb, const u8 *x, size_t xlen, u8 *y) argument
158 aes_encrypt(aes, cb, ypos);
168 aes_encrypt(aes, cb, tmp);
177 void *aes; local
179 aes = aes_encrypt_init(key, key_len);
180 if (aes == NULL)
185 aes_encrypt(aes, H, H);
188 return aes;
215 static void aes_gcm_gctr(void *aes, cons argument
261 void *aes; local
295 void *aes; local
[all...]
H A Dcrypto_internal-cipher.c13 #include "aes.h"
29 } aes; member in union:crypto_cipher::__anon5639
65 ctx->u.aes.ctx_enc = aes_encrypt_init(key, key_len);
66 if (ctx->u.aes.ctx_enc == NULL) {
70 ctx->u.aes.ctx_dec = aes_decrypt_init(key, key_len);
71 if (ctx->u.aes.ctx_dec == NULL) {
72 aes_encrypt_deinit(ctx->u.aes.ctx_enc);
76 os_memcpy(ctx->u.aes.cbc, iv, AES_BLOCK_SIZE);
122 ctx->u.aes.cbc[j] ^= plain[j];
123 aes_encrypt(ctx->u.aes
[all...]
/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Dnmake.mak69 $(OBJDIR)\aes-cbc.obj \
70 $(OBJDIR)\aes-ctr.obj \
71 $(OBJDIR)\aes-eax.obj \
72 $(OBJDIR)\aes-encblock.obj \
73 $(OBJDIR)\aes-omac1.obj \
74 $(OBJDIR)\aes-unwrap.obj \
75 $(OBJDIR)\aes-wrap.obj \
/freebsd-11-stable/crypto/heimdal/include/hcrypto/
H A DMakefile.am6 aes.h \
H A DMakefile.in346 aes.h \
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A DMakefile.am410 data/test-enveloped-aes-128 \
411 data/test-enveloped-aes-256 \
H A DMakefile.in741 data/test-enveloped-aes-128 \
742 data/test-enveloped-aes-256 \
H A Dtest_cms.in485 for a in des-ede3 aes-128 aes-256; do
502 for a in rc2-40 rc2-64 rc2-128 des-ede3 aes-128 aes-256; do
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A DMakefile.am24 aes-test \
132 crypto-aes.c \
207 salt-aes.c \
250 crypto-aes.c \
266 salt-aes.c \
H A DMakefile.in55 TESTS = aes-test$(EXEEXT) derived-key-test$(EXEEXT) \
158 libkrb5_la-crypto-aes.lo libkrb5_la-crypto-algs.lo \
193 libkrb5_la-salt-aes.lo libkrb5_la-salt-arcfour.lo \
220 librfc3961_la-crypto.lo librfc3961_la-crypto-aes.lo \
228 librfc3961_la-salt.lo librfc3961_la-salt-aes.lo \
233 am__EXEEXT_1 = aes-test$(EXEEXT) derived-key-test$(EXEEXT) \
244 aes_test_SOURCES = aes-test.c
245 aes_test_OBJECTS = aes-test.$(OBJEXT)
467 $(librfc3961_la_SOURCES) aes-test.c derived-key-test.c \
478 aes
[all...]
/freebsd-11-stable/crypto/openssh/
H A Dcipher-ctr.c34 #include <openssl/aes.h>
H A Dumac.c160 # include <openssl/aes.h>
/freebsd-11-stable/crypto/openssh/regress/
H A Dputty-ciphers.sh11 for c in aes blowfish 3des arcfour aes128-ctr aes192-ctr aes256-ctr ; do
/freebsd-11-stable/crypto/openssl/apps/
H A DMakefile934 speed.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h
H A Dprogs.pl67 "aes-128-cbc", "aes-128-ecb",
68 "aes-192-cbc", "aes-192-ecb",
69 "aes-256-cbc", "aes-256-ecb",
91 elsif ($_ =~ /aes/) { $t="#ifndef OPENSSL_NO_AES\n${t}#endif\n"; }
H A Dspeed.c128 # include <openssl/aes.h>
256 "aes-128 cbc", "aes-192 cbc", "aes-256 cbc",
259 "aes-128 ige", "aes-192 ige", "aes-256 ige", "ghash"
856 if (strcmp(*argv, "aes-128-cbc") == 0)
858 else if (strcmp(*argv, "aes-192-cbc") == 0)
860 else if (strcmp(*argv, "aes
[all...]
/freebsd-11-stable/crypto/openssl/crypto/aes/
H A DMakefile2 # crypto/aes/Makefile
5 DIR= aes
33 EXHEADER= aes.h
48 aes-ia64.s: asm/aes-ia64.S
49 $(CC) $(CFLAGS) -E asm/aes-ia64.S > $@
51 aes-586.s: asm/aes-586.pl ../perlasm/x86asm.pl
52 $(PERL) asm/aes-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
58 aes
[all...]
H A Daes_cbc.c1 /* crypto/aes/aes_cbc.c */
52 #include <openssl/aes.h>
H A Daes_cfb.c1 /* crypto/aes/aes_cfb.c */
52 #include <openssl/aes.h>
H A Daes_core.c1 /* crypto/aes/aes_core.c */
39 #include <openssl/aes.h>
H A Daes_ctr.c1 /* crypto/aes/aes_ctr.c */
52 #include <openssl/aes.h>
H A Daes_ecb.c1 /* crypto/aes/aes_ecb.c */
59 #include <openssl/aes.h>
H A Daes_ige.c1 /* crypto/aes/aes_ige.c */
54 #include <openssl/aes.h>
H A Daes_misc.c1 /* crypto/aes/aes_misc.c */
54 #include <openssl/aes.h>
62 return "aes(full)";
64 return "aes(partial)";

Completed in 227 milliseconds

123