Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/javax/crypto/
DSealedObject.java108 private String sealAlg = null; field in SealedObject
184 this.sealAlg = c.getAlgorithm(); in SealedObject()
195 this.sealAlg = so.sealAlg; in SealedObject()
210 return this.sealAlg; in getAlgorithm()
394 c = Cipher.getInstance(this.sealAlg, provider); in unseal()
396 c = Cipher.getInstance(this.sealAlg); in unseal()
403 throw new NoSuchAlgorithmException(this.sealAlg+" not found"); in unseal()