Home
last modified time | relevance | path

Searched refs:aes (Results 1 – 25 of 177) sorted by relevance

12345678

/freebsd/crypto/openssl/test/recipes/30-test_evp_data/
H A Devpciph_aes_ccm_cavs.txt13 Cipher = aes-128-ccm
21 Cipher = aes-128-ccm
31 Cipher = aes-128-ccm
41 Cipher = aes-128-ccm
51 Cipher = aes-128-ccm
59 Cipher = aes-128-ccm
69 Cipher = aes-128-ccm
79 Cipher = aes-128-ccm
89 Cipher = aes-128-ccm
99 Cipher = aes-128-ccm
[all …]
H A Devpciph_aes_ocb.txt16 Cipher = aes-128-ocb
24 Cipher = aes-128-ocb
32 Cipher = aes-128-ocb
40 Cipher = aes-128-ocb
48 Cipher = aes-128-ocb
56 Cipher = aes-128-ocb
64 Cipher = aes-128-ocb
72 Cipher = aes-128-ocb
80 Cipher = aes-128-ocb
88 Cipher = aes-128-ocb
[all …]
H A Devpciph_aes_common.txt524 Cipher = aes-128-ctr
532 Cipher = aes-128-ctr
540 Cipher = aes-128-ctr
548 Cipher = aes-192-ctr
556 Cipher = aes-192-ctr
564 Cipher = aes-192-ctr
572 Cipher = aes-256-ctr
580 Cipher = aes-256-ctr
588 Cipher = aes-256-ctr
597 Cipher = aes-128-ctr
[all …]
H A Devpciph_aes_siv.txt16 Cipher = aes-128-siv
23 Cipher = aes-128-siv
29 Cipher = aes-128-siv
36 Cipher = aes-128-siv
45 Cipher = aes-128-siv
54 Cipher = aes-128-siv
63 Cipher = aes-192-siv
70 Cipher = aes-256-siv
/freebsd/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_aes.c53 IMPLEMENT_generic_cipher(aes, AES, ecb, ECB, 0, 256, 128, 0, block)
55 IMPLEMENT_generic_cipher(aes, AES, ecb, ECB, 0, 192, 128, 0, block)
57 IMPLEMENT_generic_cipher(aes, AES, ecb, ECB, 0, 128, 128, 0, block)
59 IMPLEMENT_generic_cipher(aes, AES, cbc, CBC, 0, 256, 128, 128, block)
61 IMPLEMENT_generic_cipher(aes, AES, cbc, CBC, 0, 192, 128, 128, block)
63 IMPLEMENT_generic_cipher(aes, AES, cbc, CBC, 0, 128, 128, 128, block)
65 IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 256, 8, 128, stream)
67 IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 192, 8, 128, stream)
69 IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 128, 8, 128, stream)
89 IMPLEMENT_generic_cipher(aes, AES, ctr, CTR, 0, 256, 8, 128, stream)
[all …]
/freebsd/contrib/wpa/src/crypto/
H A Daes-ccm.c73 aes_encrypt(aes, x, x); in aes_ccm_auth()
79 aes_encrypt(aes, x, x); in aes_ccm_auth()
102 aes_encrypt(aes, a, out); in aes_ccm_encr()
125 aes_encrypt(aes, a, tmp); in aes_ccm_encr_auth()
140 aes_encrypt(aes, a, tmp); in aes_ccm_decr_auth()
153 void *aes; in aes_ccm_ae() local
160 if (aes == NULL) in aes_ccm_ae()
171 aes_encrypt_deinit(aes); in aes_ccm_ae()
183 void *aes; in aes_ccm_ad() local
191 if (aes == NULL) in aes_ccm_ad()
[all …]
H A DMakefile11 aes-cbc.o \
12 aes-ccm.o \
13 aes-ctr.o \
14 aes-eax.o \
15 aes-encblock.o \
16 aes-gcm.o \
17 aes-internal.o \
20 aes-omac1.o \
21 aes-siv.o \
22 aes-unwrap.o \
[all …]
H A Daes-gcm.c168 aes_encrypt(aes, cb, tmp); in aes_gctr()
177 void *aes; in aes_gcm_init_hash_subkey() local
180 if (aes == NULL) in aes_gcm_init_hash_subkey()
185 aes_encrypt(aes, H, H); in aes_gcm_init_hash_subkey()
188 return aes; in aes_gcm_init_hash_subkey()
261 void *aes; in aes_gcm_ae() local
264 if (aes == NULL) in aes_gcm_ae()
279 aes_encrypt_deinit(aes); in aes_gcm_ae()
295 void *aes; in aes_gcm_ad() local
298 if (aes == NULL) in aes_gcm_ad()
[all …]
H A Dcrypto_internal-cipher.c29 } aes; member
66 if (ctx->u.aes.ctx_enc == NULL) { in crypto_cipher_init()
71 if (ctx->u.aes.ctx_dec == NULL) { in crypto_cipher_init()
72 aes_encrypt_deinit(ctx->u.aes.ctx_enc); in crypto_cipher_init()
76 os_memcpy(ctx->u.aes.cbc, iv, AES_BLOCK_SIZE); in crypto_cipher_init()
122 ctx->u.aes.cbc[j] ^= plain[j]; in crypto_cipher_encrypt()
123 aes_encrypt(ctx->u.aes.ctx_enc, ctx->u.aes.cbc, in crypto_cipher_encrypt()
124 ctx->u.aes.cbc); in crypto_cipher_encrypt()
188 plain[j] ^= ctx->u.aes.cbc[j]; in crypto_cipher_decrypt()
234 aes_encrypt_deinit(ctx->u.aes.ctx_enc); in crypto_cipher_deinit()
[all …]
/freebsd/crypto/openssl/crypto/aes/
H A Dbuild.info5 $AESASM_x86=aes-586.S
82 GENERATE[aes-ia64.s]=asm/aes-ia64.S
84 GENERATE[aes-586.S]=asm/aes-586.pl
91 GENERATE[aes-x86_64.s]=asm/aes-x86_64.pl
99 GENERATE[aes-sparcv9.S]=asm/aes-sparcv9.pl
107 GENERATE[aes-ppc.s]=asm/aes-ppc.pl
111 GENERATE[aes-parisc.s]=asm/aes-parisc.pl
113 GENERATE[aes-mips.S]=asm/aes-mips.pl
121 GENERATE[aes-armv4.S]=asm/aes-armv4.pl
126 GENERATE[aes-s390x.S]=asm/aes-s390x.pl
[all …]
/freebsd/tests/sys/geom/class/eli/
H A Dconf.sh40 for cipher in aes-xts:128 aes-xts:256 \
41 aes-cbc:128 aes-cbc:192 aes-cbc:256 \
64 for cipher in aes-xts:128 aes-xts:256 \
65 aes-cbc:128 aes-cbc:192 aes-cbc:256 \
/freebsd/crypto/openssl/test/ssl-tests/
H A D13-fragmentation.cnf15 test-10 = 10-large-app-data-aes-sha1-multibuffer
16 test-11 = 11-large-app-data-aes-sha2-multibuffer
19 test-14 = 14-small-app-data-aes-sha1-multibuffer
20 test-15 = 15-small-app-data-aes-sha2-multibuffer
262 [10-large-app-data-aes-sha1-multibuffer]
265 [10-large-app-data-aes-sha1-multibuffer-ssl]
287 [11-large-app-data-aes-sha2-multibuffer]
290 [11-large-app-data-aes-sha2-multibuffer-ssl]
362 [14-small-app-data-aes-sha1-multibuffer]
365 [14-small-app-data-aes-sha1-multibuffer-ssl]
[all …]
/freebsd/contrib/libarchive/libarchive/
H A Darchive_string.c3851 aes->aes_set = 0; in archive_mstring_clean()
3886 r = archive_strncpy_l(&(aes->aes_utf8), aes->aes_mbs.s, in archive_mstring_get_utf8()
3918 aes->aes_wcs.s, aes->aes_wcs.length); in archive_mstring_get_mbs()
3934 aes->aes_utf8.s, aes->aes_utf8.length, sc); in archive_mstring_get_mbs()
3970 aes->aes_mbs.s, aes->aes_mbs.length); in archive_mstring_get_wcs()
3995 &(aes->aes_mbs_in_locale), aes->aes_wcs.s, in archive_mstring_get_mbs_l()
4027 aes->aes_mbs.s, aes->aes_mbs.length, sc); in archive_mstring_get_mbs_l()
4043 aes->aes_set = 0; in archive_mstring_copy_mbs()
4054 aes->aes_set = 0; in archive_mstring_copy_mbs_len()
4159 aes->aes_utf8.s, aes->aes_utf8.length, sc); in archive_mstring_copy_mbs_len_l()
[all …]
/freebsd/usr.sbin/wpa/src/crypto/
H A DMakefile39 SRCS+= aes-unwrap.c aes-wrap.c \
40 aes-internal.c \
41 aes-internal-dec.c \
42 aes-internal-enc.c
47 SRCS+= aes-cbc.c
51 SRCS+= aes-eax.c
55 SRCS+= aes-ctr.c
59 SRCS+= aes-encblock.c
63 SRCS+= aes-omac1.c
/freebsd/sys/contrib/device-tree/Bindings/crypto/
H A Domap-aes.txt7 - "ti,omap2-aes" for OMAP2.
8 - "ti,omap3-aes" for OMAP3.
9 - "ti,omap4-aes" for OMAP4 and AM33XX.
23 aes: aes@53500000 {
24 compatible = "ti,omap4-aes";
25 ti,hwmods = "aes";
H A Dxlnx,zynqmp-aes.yaml4 $id: http://devicetree.org/schemas/crypto/xlnx,zynqmp-aes.yaml#
19 const: xlnx,zynqmp-aes
32 xlnx_aes: zynqmp-aes {
33 compatible = "xlnx,zynqmp-aes";
/freebsd/crypto/openssl/crypto/evp/
H A De_aes.c950 } aes; member
1705 memcpy(ctx->aes.ccm.nonce.b + 1, nonce, 15 - ctx->aes.ccm.l); in s390x_aes_ccm_setiv()
1752 s390x_kmac(ctx->aes.ccm.nonce.b, 32, ctx->aes.ccm.fc, in s390x_aes_ccm_aad()
1768 ctx->aes.ccm.kmac_param.icv.b, ctx->aes.ccm.fc, in s390x_aes_ccm_aad()
1788 ctx->aes.ccm.fc, ctx->aes.ccm.kmac_param.k); in s390x_aes_ccm()
1830 ctx->aes.ccm.kmac_param.icv.b, ctx->aes.ccm.fc, in s390x_aes_ccm()
1850 ctx->aes.ccm.kmac_param.icv.b, ctx->aes.ccm.fc, in s390x_aes_ccm()
1858 s390x_km(ctx->aes.ccm.nonce.b, 16, ctx->aes.ccm.buf.b, ctx->aes.ccm.fc, in s390x_aes_ccm()
1860 ctx->aes.ccm.kmac_param.icv.g[0] ^= ctx->aes.ccm.buf.g[0]; in s390x_aes_ccm()
1861 ctx->aes.ccm.kmac_param.icv.g[1] ^= ctx->aes.ccm.buf.g[1]; in s390x_aes_ccm()
[all …]
/freebsd/crypto/openssl/providers/
H A Dfips.module.sources1 crypto/aes/aes_cbc.c
6 crypto/aes/asm/aes-586.pl
7 crypto/aes/asm/aes-armv4.pl
8 crypto/aes/asm/aes-c64xplus.pl
9 crypto/aes/asm/aes-ia64.S
10 crypto/aes/asm/aes-mips.pl
11 crypto/aes/asm/aes-parisc.pl
12 crypto/aes/asm/aes-ppc.pl
13 crypto/aes/asm/aes-s390x.pl
14 crypto/aes/asm/aes-sparcv9.pl
[all …]
H A Dfips-sources.checksums1 0e22ea0cf34ef3871e30df0bc302dc29352d38001d1622ddb78a27a374b6aee8 crypto/aes/aes_cbc.c
6 6979c133f76f4623e62e6e970deae70fa025e713a72b71aead5a048d49e47f6f crypto/aes/asm/aes-586.pl
7 92be9ff608331a432e95247a8f4fb9e46897d0cb76f2b6db809b61d44287964a crypto/aes/asm/aes-armv4.pl
8 953897f86e2de9fa27ef411155ab3aed133af94885f1507e76449c142da78656 crypto/aes/asm/aes-c64xplus.pl
9 00196f01f5218ad731e6a058d406078f7228a9756d9d73f51c0d0c2a68f885af crypto/aes/asm/aes-ia64.S
10 88b6f8396cd9d86004743d5c3b0f72b7b8c3d5a2b00b0bbb761ba91ae5a7cdc8 crypto/aes/asm/aes-mips.pl
11 7ff9c96ef3d591d45d776fa4b244601ea0d9328e289aeab1e1b92436ce7d02ad crypto/aes/asm/aes-parisc.pl
12 f1244cdeadcb4e48f35bc5df19d4cfaf07e0086ad951b84f07ff6966501faa5b crypto/aes/asm/aes-ppc.pl
13 ecbfe826f4c514810c3ee20e265f4f621149694c298554b2682e5de4f029f14f crypto/aes/asm/aes-s390x.pl
14 ee4e8cacef972942d2a89c1a83c984df9cad87c61a54383403c5c4864c403ba1 crypto/aes/asm/aes-sparcv9.pl
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Daes3 # $File: aes,v 1.1 2020/08/18 21:20:22 christos Exp $
5 # aes: magic file for AES encrypted files
13 #!:mime application/aes
14 !:mime application/x-aes-encrypted
15 !:ext aes
/freebsd/sys/contrib/openzfs/lib/libicp/
H A DMakefile.am11 module/icp/algs/aes/aes_impl_aesni.c \
12 module/icp/algs/aes/aes_impl_generic.c \
13 module/icp/algs/aes/aes_impl_x86-64.c \
14 module/icp/algs/aes/aes_impl.c \
15 module/icp/algs/aes/aes_modes.c \
35 module/icp/io/aes.c \
71 module/icp/asm-x86_64/aes/aeskey.c \
72 module/icp/asm-x86_64/aes/aes_amd64.S \
73 module/icp/asm-x86_64/aes/aes_aesni.S \
/freebsd/crypto/openssl/demos/mac/
H A Dpoly1305.c87 EVP_CIPHER *aes = NULL; in main() local
118 aes = EVP_CIPHER_fetch(library_context, "AES-128-ECB", propq); in main()
119 if (aes == NULL) { in main()
132 if (!EVP_EncryptInit_ex(aesctx, aes, NULL, test_k, NULL)) { in main()
202 EVP_CIPHER_free(aes); in main()
/freebsd/cddl/lib/libicp/
H A DMakefile9 ASM_SOURCES_C = asm-x86_64/aes/aeskey.c
11 asm-x86_64/aes/aes_amd64.S \
12 asm-x86_64/aes/aes_aesni.S \
62 algs/aes/aes_impl_aesni.c \
63 algs/aes/aes_impl_generic.c \
64 algs/aes/aes_impl_x86-64.c \
65 algs/aes/aes_impl.c \
66 algs/aes/aes_modes.c \
86 io/aes.c \
/freebsd/cddl/lib/libicp_rescue/
H A DMakefile9 ASM_SOURCES_C = asm-x86_64/aes/aeskey.c
11 asm-x86_64/aes/aes_amd64.S \
12 asm-x86_64/aes/aes_aesni.S \
61 algs/aes/aes_impl_aesni.c \
62 algs/aes/aes_impl_generic.c \
63 algs/aes/aes_impl_x86-64.c \
64 algs/aes/aes_impl.c \
65 algs/aes/aes_modes.c \
83 io/aes.c \
/freebsd/crypto/openssl/providers/common/der/
H A Dwrap.asn120 aes OBJECT IDENTIFIER ::= {
24 id-aes128-wrap OBJECT IDENTIFIER ::= { aes 5 }
25 id-aes192-wrap OBJECT IDENTIFIER ::= { aes 25 }
26 id-aes256-wrap OBJECT IDENTIFIER ::= { aes 45 }

12345678