HomeSort by relevance Sort by last modified time
    Searched full:blowfish (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/openssl/crypto/bf/
bf_ecb.c 59 #include <openssl/blowfish.h>
63 /* Blowfish as implemented from 'Blowfish: Springer-Verlag paper'
68 const char BF_version[]="Blowfish" OPENSSL_VERSION_PTEXT;
73 return("blowfish(ptr)");
75 return("blowfish(ptr2)");
77 return("blowfish(idx)");
COPYRIGHT 4 This package is an Blowfish implementation written
bf_enc.c 59 #include <openssl/blowfish.h>
62 /* Blowfish as implemented from 'Blowfish: Springer-Verlag paper'
bf_cfb64.c 59 #include <openssl/blowfish.h>
bf_ofb64.c 59 #include <openssl/blowfish.h>
bf_skey.c 61 #include <openssl/blowfish.h>
blowfish.h 1 /* crypto/bf/blowfish.h */
  /external/dropbear/libtomcrypt/src/ciphers/
blowfish.c 12 @file blowfish.c
13 Implementation of the Blowfish block cipher, Tom St Denis
17 #ifdef BLOWFISH
21 "blowfish",
301 Initialize the Blowfish block cipher
336 skey->blowfish.K[x] = ORIG_P[x] ^ A;
342 skey->blowfish.S[x][y] = ORIG_S[x][y];
355 LOAD32H(skey->blowfish.K[x], &B[0]);
356 LOAD32H(skey->blowfish.K[x+1], &B[4]);
365 LOAD32H(skey->blowfish.S[x][y], &B[0])
    [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
23 Blowfish | 4,168 |
  /libcore/support/src/test/java/libcore/java/security/
StandardNames.java 83 provide("AlgorithmParameters", "Blowfish");
102 provide("Cipher", "Blowfish");
119 provide("KeyGenerator", "Blowfish");
285 // different case names: Blowfish vs BLOWFISH
286 unprovide("AlgorithmParameters", "Blowfish");
287 provide("AlgorithmParameters", "BLOWFISH");
288 unprovide("Cipher", "Blowfish");
289 provide("Cipher", "BLOWFISH");
290 unprovide("KeyGenerator", "Blowfish");
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCEKeyGenerator.java 175 * Blowfish
177 public static class Blowfish
180 public Blowfish()
182 super("Blowfish", 128, new CipherKeyGenerator());
JCEStreamCipher.java 423 // * Blowfish
483 // * Blowfish
JCEBlockCipher.java 866 * Blowfish
868 static public class Blowfish
871 public Blowfish()
879 // * Blowfish CBC
    [all...]
JCEDHKeyAgreement.java 48 algorithms.put("BLOWFISH", i128);
  /external/ipsec-tools/src/racoon/samples/
racoon.conf.sample 58 encryption_algorithm 3des, cast128, blowfish 448, des, rijndael ;
racoon.conf.in 117 encryption_algorithm 3des, blowfish, aes;
  /external/dropbear/libtomcrypt/demos/
encrypt.c 7 /* ie: ./encrypt blowfish story.txt story.ct */
8 /* ./encrypt -d blowfish story.ct story.pt */
32 #ifdef BLOWFISH
  /external/dropbear/
SMALL 14 - You can safely disable blowfish and twofish ciphers, and MD5 hmac, without
common-algo.c 106 {"blowfish-cbc", 0, (void*)&dropbear_blowfish, 1},
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_custom.h 94 #define BLOWFISH
tomcrypt_cipher.h 6 #ifdef BLOWFISH
148 #ifdef BLOWFISH
149 struct blowfish_key blowfish; member in union:Symmetric_key
535 #ifdef BLOWFISH
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
BlowfishEngine.java 9 * A class that provides Blowfish key encryption operations,
320 * initialise a Blowfish cipher.
340 throw new IllegalArgumentException("invalid parameter passed to Blowfish init - " + params.getClass().getName());
345 return "Blowfish";
356 throw new IllegalStateException("Blowfish not initialised");
479 * Encrypt the all-zero string with the Blowfish algorithm, using
486 * Encrypt the output of step(3) using the Blowfish algorithm,
495 * continuously changing Blowfish algorithm
  /external/dropbear/libtomcrypt/src/misc/crypt/
crypt.c 48 #if defined(BLOWFISH)
49 " Blowfish\n"
  /external/bouncycastle/src/main/java/org/bouncycastle/openssl/
PEMUtilities.java 71 alg = "Blowfish";
  /external/openssl/crypto/evp/
e_bf.c 65 #include <openssl/blowfish.h>

Completed in 678 milliseconds

1 2 3