Home
last modified time | relevance | path

Searched refs:decrypter (Results 1 – 5 of 5) sorted by relevance

/external/wycheproof/keystore-cts/java/com/google/security/wycheproof/testcases/
DRsaEncryptionTest.java147 Cipher decrypter = Cipher.getInstance("RSA/ECB/PKCS1Padding"); in testDecryption() local
158 decrypter.init(Cipher.DECRYPT_MODE, key); in testDecryption()
162 decrypted = decrypter.doFinal(ciphertext); in testDecryption()
DRsaOaepTest.java242 Cipher decrypter = Cipher.getInstance(algorithm); in testOaep() local
252 decrypter.init(Cipher.DECRYPT_MODE, key, params); in testOaep()
255 decrypted = decrypter.doFinal(ciphertext); in testOaep()
/external/ukey2/src/main/java/com/google/security/cryptauth/lib/securemessage/
DCryptoOps.java293 Cipher decrypter = Cipher.getInstance(encType.getJcaName()); in decrypt() local
296 decrypter.init(Cipher.DECRYPT_MODE, derivedKey, new IvParameterSpec(iv)); in decrypt()
297 return decrypter.doFinal(ciphertext); in decrypt()
/external/python/cpython2/Lib/
Dzipfile.py515 def __init__(self, fileobj, mode, zipinfo, decrypter=None, argument
518 self._decrypter = decrypter
/external/python/cpython3/Lib/
Dzipfile.py578 def decrypter(data): function
589 return decrypter