/external/ipsec-tools/src/racoon/missing/crypto/rijndael/ |
rijndael.h | 1 /* $NetBSD: rijndael.h,v 1.4 2006/09/09 16:22:36 manu Exp $ */ 3 /* $KAME: rijndael.h,v 1.1.1.1 2001/08/08 09:56:27 sakane Exp $ */ 5 #include <crypto/rijndael/rijndael-api-fst.h>
|
rijndael-api-fst.h | 1 /* $NetBSD: rijndael-api-fst.h,v 1.4 2006/09/09 16:22:36 manu Exp $ */ 3 /* $KAME: rijndael-api-fst.h,v 1.1.1.1 2001/08/08 09:56:27 sakane Exp $ */ 6 * rijndael-api-fst.h v2.3 April '2000 16 #include <crypto/rijndael/rijndael-alg-fst.h>
|
rijndael-api-fst.c | 1 /* $NetBSD: rijndael-api-fst.c,v 1.4 2006/09/09 16:22:36 manu Exp $ */ 3 /* $KAME: rijndael-api-fst.c,v 1.8 2002/11/18 23:32:54 itojun Exp $ */ 6 * rijndael-api-fst.c v2.3 April '2000 30 #include <crypto/rijndael/rijndael-alg-fst.h> 31 #include <crypto/rijndael/rijndael-api-fst.h> 32 #include <crypto/rijndael/rijndael_local.h>
|
rijndael-alg-fst.c | 1 /* $NetBSD: rijndael-alg-fst.c,v 1.4 2006/09/09 16:22:36 manu Exp $ */ 3 /* $KAME: rijndael-alg-fst.c,v 1.1.1.1 2001/08/08 09:56:23 sakane Exp $ */ 6 * rijndael-alg-fst.c v2.3 April '2000 26 #include <crypto/rijndael/rijndael-alg-fst.h> 27 #include <crypto/rijndael/rijndael_local.h> 29 #include <crypto/rijndael/boxes-fst.dat>
|
/external/chromium_org/third_party/tlslite/tlslite/utils/ |
Python_AES.py | 6 from rijndael import rijndael namespace 14 self.rijndael = rijndael(key, 16) 33 encryptedBytes = stringToBytes(self.rijndael.encrypt(blockString)) 57 decryptedBytes = stringToBytes(self.rijndael.decrypt(blockString))
|
rijndael.py | 2 A pure python (slow) implementation of rijndael with a decent interface 6 from rijndael import rijndael 10 r = rijndael(key, block_size = 16) 213 class rijndael: class in inherits: 373 return rijndael(key, len(block)).encrypt(block) 376 return rijndael(key, len(block)).decrypt(block) 381 r = rijndael('a' * kl, bl)
|
/external/dropbear/libtomcrypt/src/ciphers/aes/ |
aes.c | 17 * rijndael-alg-fst.c 21 * Optimised ANSI C code for the Rijndael cipher (now AES) 35 #ifdef RIJNDAEL 49 "rijndael", 75 "rijndael", 116 Initialize the AES (Rijndael) block cipher 141 skey->rijndael.Nr = 10 + ((keylen/8)-2)*2; 145 rk = skey->rijndael.eK; 169 temp = skey->rijndael.eK[rk - skey->rijndael.eK + 5]; [all...] |
/external/openssh/ |
Android.mk | 16 monitor_fdpass.c rijndael.c ssh-dss.c ssh-ecdsa.c ssh-rsa.c dh.c \
|
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_cipher.h | 33 #ifdef RIJNDAEL 160 #ifdef RIJNDAEL 161 struct rijndael_key rijndael; member in union:Symmetric_key 601 #ifdef RIJNDAEL
|
/external/ipsec-tools/src/racoon/ |
cftoken.l | 445 rijndael { YYD; yylval.num = algtype_aes; return(ALGORITHMTYPE); }
|
crypto_openssl.c | 83 #include <openssl/rijndael.h> 85 #include "crypto/rijndael/rijndael-api-fst.h" 1605 * AES(RIJNDAEL)-CBC [all...] |
/external/openssh/contrib/redhat/ |
openssh.spec | 596 - update to 2.5.2p1 (includes endianness fixes in the rijndael implementation)
|
/external/dropbear/libtomcrypt/ |
crypt.tex | 639 For AES, (also known as Rijndael) there are four descriptors which complicate issues a little. The descriptors 640 rijndael\_desc and rijndael\_enc\_desc provide the cipher named \textit{rijndael}. The descriptors aes\_desc and 641 aes\_enc\_desc provide the cipher name \textit{aes}. Functionally both \textit{rijndael} and \textit{aes} are the same cipher. The 643 in the middle (e.g. rijndael\_enc\_desc) are related to an implementation of Rijndael with only the encryption routine 649 Rijndael as it makes the most sense for this cipher. [all...] |