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

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

Completed in 203 milliseconds