Searched refs:epkInfo (Results 1 – 3 of 3) sorted by relevance
99 EncryptedPrivateKeyInfo epkInfo; in decryptPrivateKey() local101 epkInfo = new EncryptedPrivateKeyInfo(encryptedPrivateKey); in decryptPrivateKey()109 SecretKeyFactory skFactory = SecretKeyFactory.getInstance(epkInfo.getAlgName()); in decryptPrivateKey()112 Cipher cipher = Cipher.getInstance(epkInfo.getAlgName()); in decryptPrivateKey()113 cipher.init(Cipher.DECRYPT_MODE, key, epkInfo.getAlgParameters()); in decryptPrivateKey()116 return epkInfo.getKeySpec(cipher); in decryptPrivateKey()
140 EncryptedPrivateKeyInfo epkInfo; in decryptPrivateKey() local142 epkInfo = new EncryptedPrivateKeyInfo(encryptedPrivateKey); in decryptPrivateKey()150 SecretKeyFactory skFactory = SecretKeyFactory.getInstance(epkInfo.getAlgName()); in decryptPrivateKey()154 Cipher cipher = Cipher.getInstance(epkInfo.getAlgName()); in decryptPrivateKey()155 cipher.init(Cipher.DECRYPT_MODE, key, epkInfo.getAlgParameters()); in decryptPrivateKey()158 return epkInfo.getKeySpec(cipher); in decryptPrivateKey()
234 EncryptedPrivateKeyInfo epkInfo; in decryptPrivateKey() local236 epkInfo = new EncryptedPrivateKeyInfo(encryptedPrivateKey); in decryptPrivateKey()244 SecretKeyFactory skFactory = SecretKeyFactory.getInstance(epkInfo.getAlgName()); in decryptPrivateKey()247 Cipher cipher = Cipher.getInstance(epkInfo.getAlgName()); in decryptPrivateKey()248 cipher.init(Cipher.DECRYPT_MODE, key, epkInfo.getAlgParameters()); in decryptPrivateKey()251 return epkInfo.getKeySpec(cipher); in decryptPrivateKey()