/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/ |
Twofish.java | 25 public final class Twofish 27 private Twofish() 52 // super("Twofish", 256, new CipherKeyGenerator()); 96 // return "Twofish IV"; 104 private static final String PREFIX = Twofish.class.getName(); 113 // provider.addAlgorithm("Cipher.Twofish", PREFIX + "$ECB"); 114 // provider.addAlgorithm("KeyGenerator.Twofish", PREFIX + "$KeyGen"); 115 // provider.addAlgorithm("AlgorithmParameters.Twofish", PREFIX + "$AlgParams"); 124 // addGMacAlgorithm(provider, "Twofish", PREFIX + "$GMAC", PREFIX + "$KeyGen");
|
/external/dropbear/libtomcrypt/src/ciphers/twofish/ |
twofish.c | 13 @file twofish.c 14 Implementation of Twofish by Tom St Denis 18 #ifdef TWOFISH 29 "twofish", 280 #define S1 skey->twofish.S[0] 281 #define S2 skey->twofish.S[1] 282 #define S3 skey->twofish.S[2] 283 #define S4 skey->twofish.S[3] 303 z = key->twofish.start; 313 g = g ^ key->twofish.S[4*i++ + y] [all...] |
/external/dropbear/libtomcrypt/notes/ |
tech0003.txt | 14 the build you can minimize the size of this structure. For instance, by removing both Twofish and Blowfish the 16 Blowfish and use Twofish with TWOFISH_SMALL defined its still 768 bytes. Even at its largest the structure is only 22 Twofish | 4,256 | 33 Twofish [*] | 193 | 41 [*] For Twofish with TWOFISH_SMALL defined
|
/external/dropbear/libtomcrypt/ |
crypt.lof | 7 \contentsline {figure}{\numberline {3.2}{\ignorespaces Twofish Build Options}}{21}{figure.3.2}
|
Makefile.in | 104 src/ciphers/twofish/twofish.o src/ciphers/xtea.o src/encauth/ccm/ccm_memory.o \ 194 src/ciphers/twofish/twofish.o: src/ciphers/twofish/twofish.c src/ciphers/twofish/twofish_tab.c
|
makefile.icc | 101 src/ciphers/twofish/twofish.o src/ciphers/xtea.o src/encauth/ccm/ccm_memory.o \ 243 src/ciphers/twofish/twofish.o: src/ciphers/twofish/twofish.c src/ciphers/twofish/twofish_tab.c
|
makefile.shared | 106 src/ciphers/twofish/twofish.o src/ciphers/xtea.o src/encauth/ccm/ccm_memory.o \ 235 src/ciphers/twofish/twofish.o: src/ciphers/twofish/twofish.c src/ciphers/twofish/twofish_tab.c
|
makefile.unix | 47 src/ciphers/twofish/twofish.o src/ciphers/xtea.o src/encauth/ccm/ccm_memory.o \ 183 src/ciphers/twofish/twofish.o: src/ciphers/twofish/twofish.c src/ciphers/twofish/twofish_tab.c
|
Android.mk | 13 src/ciphers/twofish/twofish.c src/ciphers/xtea.c src/encauth/ccm/ccm_memory.c \
|
makefile.msvc | 11 src/ciphers/twofish/twofish.obj src/ciphers/xtea.obj src/encauth/ccm/ccm_memory.obj \
|
/prebuilts/devtools/tools/lib/ |
jobb.jar | |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
loop.h | 67 #define LO_CRYPT_FISH2 3 /* Twofish encryption */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
loop.h | 67 #define LO_CRYPT_FISH2 3 /* Twofish encryption */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
loop.h | 67 #define LO_CRYPT_FISH2 3 /* Twofish encryption */
|
/external/dropbear/ |
SMALL | 14 - You can safely disable blowfish and twofish ciphers, and MD5 hmac, without
|
common-algo.c | 100 {"twofish-cbc", 0, (void*)&dropbear_twofish256, 1},
|
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_custom.h | 102 #define TWOFISH
|
tomcrypt_cipher.h | 60 #ifdef TWOFISH 145 #ifdef TWOFISH 146 struct twofish_key twofish; member in union:Symmetric_key 639 #ifdef TWOFISH
|
/external/dropbear/libtomcrypt/src/misc/crypt/ |
crypt.c | 72 #if defined(TWOFISH) 73 " Twofish "
|
/external/kernel-headers/original/linux/ |
loop.h | 122 #define LO_CRYPT_FISH2 3 /* Twofish encryption */
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
BouncyCastleProvider.java | 76 // "Noekeon", "RC2", "RC5", "RC6", "Rijndael", "Salsa20", "SEED", "Serpent", "Skipjack", "TEA", "Twofish", "VMPC", "VMPCKSA3", "XTEA" 79 "AES", "ARC4", "Blowfish", "DES", "DESede", "RC2", "Twofish"
|
JCEStreamCipher.java | 552 // * Twofish 612 // * Twofish
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
TwofishEngine.java | 10 * A class that provides Twofish encryption operations. 155 * automatically get changed in the Twofish engine. 260 * initialise a Twofish cipher. 281 throw new IllegalArgumentException("invalid parameter passed to Twofish init - " + params.getClass().getName()); 286 return "Twofish"; 297 throw new IllegalStateException("Twofish not initialised");
|
/external/dropbear/libtomcrypt/demos/ |
encrypt.c | 47 #ifdef TWOFISH
|
/prebuilts/devtools/notices/base/ |
NOTICE_jobb.jar.txt | 20 Twofish is uncopyrighted and license-free, and was created and analyzed by:
|