HomeSort by relevance Sort by last modified time
    Searched refs:decrypt (Results 1 - 19 of 19) sorted by null

  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
ConnectionState.java 58 * decrypt call
123 protected byte[] decrypt(byte type, byte[] fragment) { method in class:ConnectionState
124 return decrypt(type, fragment, 0, fragment.length);
136 protected abstract byte[] decrypt method in class:ConnectionState
DigitalSignature.java 226 final byte[] decrypt;
228 decrypt = cipher.doFinal(data);
246 return Arrays.equals(decrypt, md5_sha);
SSLRecordProtocol.java 387 fragment = activeReadState.decrypt((byte) type, fragment);
ConnectionStateSSLv3.java 282 protected byte[] decrypt(byte type, byte[] fragment, method in class:ConnectionStateSSLv3
ConnectionStateTLS.java 300 protected byte[] decrypt(byte type, byte[] fragment, method in class:ConnectionStateTLS
  /external/dropbear/libtomcrypt/demos/
encrypt.c 100 unsigned long outlen, y, ivsize, x, decrypt; local
115 decrypt = 1;
120 decrypt = 0;
166 if (decrypt) {
  /frameworks/base/media/libdrm/mobile2/include/util/crypto/
DrmCrypto.h 29 // aes crypto for decrypt
37 * decrypt data using AES, now only support 128 bits CBC
60 // get the actual length of decrypt data
182 * Decrypt data using RSA
190 int decrypt( const unsigned char* encData,
  /external/ipsec-tools/src/racoon/
algorithm.h 157 vchar_t *(*decrypt) __P((vchar_t *, vchar_t *, vchar_t *)); member in struct:enc_algorithm
algorithm.c 534 if (f == NULL || f->decrypt == NULL)
541 res = (f->decrypt)(buf, key, iv);
eaytest.c 597 eay_func decrypt)
625 res2 = (decrypt)(res1, key, iv);
  /frameworks/base/media/libdrm/mobile2/src/util/crypto/
DrmCrypto.cpp 226 int RsaAgent::decrypt( const unsigned char* encData, function in class:RsaAgent
  /external/wpa_supplicant/
des.c 281 static void deskey(const u8 *key, int decrypt, u32 *keyout)
294 if (decrypt)
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
des.c 281 static void deskey(const u8 *key, int decrypt, u32 *keyout)
294 if (decrypt)
  /external/openssl/apps/
speed.c 759 int decrypt=0; local
864 else if (argc > 0 && !strcmp(*argv,"-decrypt"))
866 decrypt=1;
    [all...]
  /external/dropbear/libtomcrypt/
crypt.tex 147 and store data in a format independent of the platform. This means if you encrypt with Blowfish on a PPC it should decrypt
183 the key setup, ECB decrypt and encrypt and test vector routines. After that all five chaining mode routines
432 To encrypt or decrypt a block in ECB mode there are these two functions per cipher:
433 \index{Cipher Encrypt} \index{Cipher Decrypt}
443 These two functions will encrypt or decrypt (respectively) a single block of text\footnote{The size of which depends on
528 /* decrypt the block */
529 blowfish_ecb_decrypt(ct, /* decrypt this 8-byte array */
    [all...]
  /external/v8/benchmarks/
crypto.js 36 new Benchmark("Decrypt", decrypt)
    [all...]
  /external/webkit/SunSpider/tests/v8-v4/
v8-crypto.js     [all...]
  /external/openssl/crypto/evp/
evp.h 216 int (*decrypt)();
342 const unsigned char *in, unsigned int inl);/* encrypt/decrypt data */
404 int encrypt; /* encrypt or decrypt */
    [all...]
  /external/openssl/include/openssl/
evp.h 216 int (*decrypt)();
342 const unsigned char *in, unsigned int inl);/* encrypt/decrypt data */
404 int encrypt; /* encrypt or decrypt */
    [all...]

Completed in 497 milliseconds