HomeSort by relevance Sort by last modified time
    Searched refs:DES (Results 1 - 25 of 33) sorted by null

1 2

  /external/openssl/crypto/des/
DES.pm 1 package DES;
17 bootstrap DES;
FILES0 3 MODES.DES - A description of the features of the different modes of DES.
18 /* My SunOS des(1) replacement */
19 des.c - des(1) source code.
20 des.man - des(1) manual.
29 des.h - Public libdes.a header file.
30 ecb_enc.c - des_ecb_encrypt() source, this contains the basic DES code.
36 ede_enc.c - des_ede3_cbc_encrypt() cbc mode des using triple DES
    [all...]
DES.xs 4 #include "des.h"
17 MODULE = DES PACKAGE = DES PREFIX = des_
des.h 1 /* crypto/des/des.h */
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
66 #error DES is disabled.
153 /* This is the DES encryption function that gets called by just about
154 every other DES routine in the library. You should not use this
155 function except to implement 'modes' of DES. I say this because the
164 /* This functions is the same as DES_encrypt1() except that the DES
167 It is used by the routines in the library that implement triple DES.
set_key.c 1 /* crypto/des/set_key.c */
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
341 fips_cipher_abort(DES);
  /external/openssl/crypto/des/t/
test 5 use DES;
8 $ks=DES::set_key($key);
14 $key=DES::random_key();
20 ($k1,$k2)=DES::string_to_2keys($str);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
DES.java 40 public final class DES
42 private DES()
66 // * DES CFB8
136 // throw new InvalidAlgorithmParameterException("No supported AlgorithmParameterSpec for DES parameter generation.");
154 // params = AlgorithmParameters.getInstance("DES", BouncyCastleProvider.PROVIDER_NAME);
168 * DES - the default for this is to generate a key in
179 super("DES", 64, new DESKeyGenerator());
206 super("DES", null);
251 return new SecretKeySpec(desKeySpec.getKey(), "DES");
261 private static final String PREFIX = DES.class.getName()
    [all...]
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_custom.h 112 #define DES
tomcrypt_cipher.h 90 #ifdef DES
135 #ifdef DES
136 struct des_key des; member in union:Symmetric_key
649 #ifdef DES
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
DESede.java 36 public class DESede extends DES
52 * initialise a DES cipher.
DES.java 4 This file is based on the 3DES implementation from the Bouncy Castle Crypto package.
30 * DES.
36 public class DES implements BlockCipher
43 public DES()
48 * initialise a DES cipher.
64 return "DES";
76 throw new IllegalStateException("DES engine not initialised!");
281 * the DES engine.
  /external/openssl/crypto/des/times/
usparc.cc 4 gives a speed of 475,000 des/s while 'speed' gives 417,000 des/s.
6 is able to perform when the code is 'inlined'. For 'speed', the DES
17 options des ecb/s
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseMac.java 156 * DES
158 public static class DES
161 public DES()
168 * DES 64 bit MAC
207 // * DES
BaseSecretKeyFactory.java 175 static public class DES
178 public DES()
180 super("DES", null);
190 return new SecretKeySpec(desKeySpec.getKey(), "DES");
  /external/openssl/crypto/bn/
bn_prime.pl 44 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
PEMDecoder.java 15 import ch.ethz.ssh2.crypto.cipher.DES;
183 // DEK-Info: DES-EDE3-CBC,579B6BE3E5C60483
240 if (algo.equals("DES-EDE3-CBC"))
246 else if (algo.equals("DES-CBC"))
248 DES des = new DES(); local
249 des.init(false, generateKeyFromPasswordSaltWithMD5(pw, salt, 8));
250 bc = new CBCMode(des, salt, false);
  /external/openssl/crypto/conf/
keysets.pl 66 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  /external/dropbear/libtomcrypt/demos/
encrypt.c 59 #ifdef DES
tv_gen.c 37 #ifdef DES
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCESecretKeyFactory.java 233 static public class DES
236 public DES()
238 super("DES", null);
248 return new SecretKeySpec(desKeySpec.getKey(), "DES");
  /external/openssl/crypto/objects/
obj_dat.pl 188 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
objects.pl 139 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  /external/openssl/include/openssl/
des.h 1 /* crypto/des/des.h */
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
66 #error DES is disabled.
153 /* This is the DES encryption function that gets called by just about
154 every other DES routine in the library. You should not use this
155 function except to implement 'modes' of DES. I say this because the
164 /* This functions is the same as DES_encrypt1() except that the DES
167 It is used by the routines in the library that implement triple DES.
  /external/dropbear/libtomcrypt/src/prngs/
yarrow.c 81 #elif defined(DES)
  /external/qemu/
ppc-dis.c 566 /* The DES field in a DES form instruction. This is like DS, but is 14
568 #define DES DE + 1
573 #define DQ DES + 1
    [all...]

Completed in 361 milliseconds

1 2