Searched refs:decrypter (Results 1 – 5 of 5) sorted by relevance
/external/wycheproof/keystore-cts/java/com/google/security/wycheproof/testcases/ |
D | RsaEncryptionTest.java | 147 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()
|
D | RsaOaepTest.java | 242 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/ |
D | CryptoOps.java | 293 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/ |
D | zipfile.py | 515 def __init__(self, fileobj, mode, zipinfo, decrypter=None, argument 518 self._decrypter = decrypter
|
/external/python/cpython3/Lib/ |
D | zipfile.py | 578 def decrypter(data): function 589 return decrypter
|