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.java110 private String sealAlg = null; field in SealedObject
186 this.sealAlg = c.getAlgorithm(); in SealedObject()
197 this.sealAlg = so.sealAlg; in SealedObject()
212 return this.sealAlg; in getAlgorithm()
398 c = Cipher.getInstance(this.sealAlg, provider); in unseal()
400 c = Cipher.getInstance(this.sealAlg); in unseal()
407 throw new NoSuchAlgorithmException(this.sealAlg+" not found"); in unseal()