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

1 2 3

  /frameworks/base/core/java/android/security/
package.html 3 Utilities for encrypting messages from hash functions.
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
DESedeEngine.java 31 * @param encrypting whether or not we are for encryption.
37 boolean encrypting,
52 this.forEncryption = encrypting;
56 workingKey1 = generateWorkingKey(encrypting, key1);
60 workingKey2 = generateWorkingKey(!encrypting, key2);
66 workingKey3 = generateWorkingKey(encrypting, key3);
RC2Engine.java 58 private boolean encrypting; field in class:RC2Engine
114 * @param encrypting whether or not we are for encryption.
120 boolean encrypting,
123 this.encrypting = encrypting;
180 if (encrypting)
DESEngine.java 28 * @param encrypting whether or not we are for encryption.
34 boolean encrypting,
44 workingKey = generateWorkingKey(encrypting,
307 boolean encrypting,
325 if (encrypting)
RSABlindedEngine.java 29 * @param forEncryption true if we are encrypting, false otherwise.
BlowfishEngine.java 306 private boolean encrypting = false; field in class:BlowfishEngine
322 * @param encrypting whether or not we are for encryption.
328 boolean encrypting,
333 this.encrypting = encrypting;
369 if (encrypting)
TwofishEngine.java 206 private boolean encrypting = false; field in class:TwofishEngine
261 * @param encrypting whether or not we are for encryption.
267 boolean encrypting,
272 this.encrypting = encrypting;
309 if (encrypting)
RSACoreEngine.java 22 * @param forEncryption true if we are encrypting, false otherwise.
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
CBCBlockCipher.java 21 private boolean encrypting; field in class:CBCBlockCipher
53 * @param encrypting if true the cipher is initialised for
60 boolean encrypting,
64 this.encrypting = encrypting;
80 cipher.init(encrypting, ivParam.getParameters());
86 cipher.init(encrypting, params);
130 return (encrypting) ? encryptBlock(in, inOff, out, outOff) : decryptBlock(in, inOff, out, outOff);
CFBBlockCipher.java 20 private boolean encrypting; field in class:CFBBlockCipher
56 * @param encrypting if true the cipher is initialised for
63 boolean encrypting,
67 this.encrypting = encrypting;
141 return (encrypting) ? encryptBlock(in, inOff, out, outOff) : decryptBlock(in, inOff, out, outOff);
GOFBBlockCipher.java 65 * @param encrypting if true the cipher is initialised for
72 boolean encrypting, //ignored by this CTR mode
OFBBlockCipher.java 55 * @param encrypting if true the cipher is initialised for
62 boolean encrypting, //ignored by this OFB mode
  /libcore/luni/src/main/java/javax/crypto/
package.html 13 encrypting it with a cipher.
  /external/tcpdump/
telnet.h 282 * should we be encrypting? (not yet formally standardized)
316 #define ENCRYPT_REQSTART 5 /* Request you start encrypting */
317 #define ENCRYPT_REQEND 6 /* Request you send encrypting */
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-api-fst.h 54 u_int8_t direction; /* Key used for encrypting or decrypting? */
  /external/openssl/crypto/bf/asm/
bf-686.pl 46 # encrypting part
bf-586.pl 46 # encrypting part
  /bionic/libc/include/arpa/
telnet.h 284 #define ENCRYPT_REQSTART 5 /* Request you start encrypting */
285 #define ENCRYPT_REQEND 6 /* Request you send encrypting */
  /development/ndk/platforms/android-9/include/arpa/
telnet.h 284 #define ENCRYPT_REQSTART 5 /* Request you start encrypting */
285 #define ENCRYPT_REQEND 6 /* Request you send encrypting */
  /external/dropbear/libtomcrypt/notes/
tech0004.txt 85 system-wide PRNG and use SOBER-128 [key'ed from Fortuna] for encrypting streams or as a PRNG for
  /external/openssl/crypto/des/
des.pod 179 If encrypting, the characters following the B<-u> are used as the name of
  /external/openssl/ssl/
s2_enc.c 120 * if we are encrypting */
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_peap.c 254 wpa_hexdump_key(MSG_DEBUG, "EAP-PEAP: Encrypting Phase 2 data",
295 wpa_hexdump_key(MSG_DEBUG, "EAP-PEAP: Encrypting Phase 2 SOH data",
450 wpa_hexdump_buf_key(MSG_DEBUG, "EAP-PEAP: Encrypting Phase 2 TLV data",
478 wpa_hexdump_key(MSG_DEBUG, "EAP-PEAP: Encrypting Phase 2 data",
    [all...]
  /external/kernel-headers/original/linux/sunrpc/
svc.h 163 * to prevent encrypting page
  /external/openssl/apps/
pkcs8.c 315 BIO_printf(bio_err, "Error encrypting key\n");

Completed in 219 milliseconds

1 2 3