Searched refs:decrypt (Results 1 - 25 of 63) sorted by relevance

123

/external/chromium_org/third_party/tlslite/tlslite/utils/
H A Dpycrypto_rc4.py26 def decrypt(self, ciphertext): member in class:PyCrypto_RC4
28 return bytearray(self.context.decrypt(ciphertext)
H A Drc4.py18 def decrypt(self, ciphertext): member in class:RC4
H A Dpycrypto_aes.py27 def decrypt(self, ciphertext): member in class:PyCrypto_AES
29 return bytearray(self.context.decrypt(ciphertext))
H A Dpycrypto_tripledes.py27 def decrypt(self, ciphertext): member in class:PyCrypto_TripleDES
29 return bytearray(self.context.decrypt(ciphertext)
H A Dtripledes.py26 def decrypt(self, ciphertext): member in class:TripleDES
H A Dpython_aes.py47 def decrypt(self, ciphertext): member in class:Python_AES
48 AES.decrypt(self, ciphertext)
58 decryptedBytes = self.rijndael.decrypt(blockBytes)
H A Daes.py33 def decrypt(self, ciphertext): member in class:AES
H A Dopenssl_rc4.py27 def decrypt(self, ciphertext): member in class:OpenSSL_RC4
H A Dopenssl_aes.py40 def decrypt(self, ciphertext): member in class:OpenSSL_AES
41 AES.decrypt(self, ciphertext)
43 #I think M2Crypto has a bug - it fails to decrypt and return the last block passed in.
H A Dopenssl_tripledes.py35 def decrypt(self, ciphertext): member in class:OpenSSL_TripleDES
36 TripleDES.decrypt(self, ciphertext)
38 #I think M2Crypto has a bug - it fails to decrypt and return the last block passed in.
H A Dpycrypto_rsakey.py30 c = bytesToNumber(bytearray(self.rsa.decrypt((s,))))
H A Dpython_rc4.py40 def decrypt(self, ciphertext): member in class:Python_RC4
H A Drijndael.py25 plaintext = r.decrypt(ciphertext)
321 def decrypt(self, ciphertext): member in class:rijndael
367 def decrypt(key, block): function
368 return rijndael(key, len(block)).decrypt(block)
374 assert r.decrypt(r.encrypt(b)) == b
/external/fonttools/Lib/fontTools/misc/
H A Deexec.py21 def decrypt(cipherstring, R): function
50 print(decrypt, decrypt(testStr, 12321))
/external/fonttools/Tools/fontTools/misc/
H A Deexec.py21 def decrypt(cipherstring, R): function
50 print(decrypt, decrypt(testStr, 12321))
/external/chromium_org/third_party/libsrtp/srtp/crypto/include/
H A Dcipher.h87 * and direction (i.e., encrypt or decrypt)
145 cipher_encrypt_func_t decrypt; member in struct:cipher_type_t
180 (((c)->type)->decrypt(((c)->state), (buf), (len)))
/external/srtp/crypto/include/
H A Dcipher.h85 * and direction (i.e., encrypt or decrypt)
144 cipher_encrypt_func_t decrypt; member in struct:cipher_type_t
178 (((c)->type)->decrypt(((c)->state), (buf), (len)))
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DSubtleCrypto.h54 ScriptPromise decrypt(ScriptState*, const Dictionary&, CryptoKey*, const ArrayPiece&);
H A DSubtleCrypto.idl46 [CallWith=ScriptState] Promise decrypt(Dictionary algorithm, CryptoKey key, ArrayBuffer data);
47 [CallWith=ScriptState] Promise decrypt(Dictionary algorithm, CryptoKey key, ArrayBufferView data);
/external/openssl/crypto/evp/
H A Dpmeth_fn.c232 if (!ctx || !ctx->pmeth || !ctx->pmeth->decrypt)
251 if (!ctx || !ctx->pmeth || !ctx->pmeth->decrypt)
263 return ctx->pmeth->decrypt(ctx, out, outlen, in, inlen);
288 if (!ctx || !ctx->pmeth || !(ctx->pmeth->derive||ctx->pmeth->encrypt||ctx->pmeth->decrypt) || !ctx->pmeth->ctrl)
H A Dpmeth_lib.c232 pmeth->decrypt = 0;
282 dst->decrypt = src->decrypt;
572 int (*decrypt)(EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen,
576 pmeth->decrypt = decrypt;
/external/fonttools/Lib/fontTools/
H A Dt1Lib.py92 charString, R = eexec.decrypt(charString, 4330)
96 charString, R = eexec.decrypt(subrs[i], 4330)
298 decrypted, R = eexec.decrypt(chunk, 55665)
325 plainText, R = eexec.decrypt(cypherText, 55665)
/external/fonttools/Tools/fontTools/
H A Dt1Lib.py92 charString, R = eexec.decrypt(charString, 4330)
96 charString, R = eexec.decrypt(subrs[i], 4330)
298 decrypted, R = eexec.decrypt(chunk, 55665)
325 plainText, R = eexec.decrypt(cypherText, 55665)
/external/chromium_org/content/child/webcrypto/
H A Dwebcrypto_impl.h33 virtual void decrypt(const blink::WebCryptoAlgorithm& algorithm,
/external/chromium_org/third_party/boringssl/src/crypto/evp/
H A Devp_ctx.c329 if (!ctx || !ctx->pmeth || !ctx->pmeth->decrypt) {
347 if (!ctx || !ctx->pmeth || !ctx->pmeth->decrypt) {
356 return ctx->pmeth->decrypt(ctx, out, outlen, in, inlen);
379 !(ctx->pmeth->derive || ctx->pmeth->encrypt || ctx->pmeth->decrypt) ||

Completed in 1730 milliseconds

123