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

/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DHmacCore.java46 final class HmacCore implements Cloneable { class in inherits:Cloneable
56 * Standard constructor, creates a new HmacCore instance using the
59 HmacCore(MessageDigest md, int bl) { method in class:HmacCore
68 * Standard constructor, creates a new HmacCore instance instantiating
71 HmacCore(String digestAlgorithm, int bl) throws NoSuchAlgorithmException { method in class:HmacCore
78 private HmacCore(HmacCore other) throws CloneNotSupportedException { method in class:HmacCore
237 return new HmacCore(this);
242 private final HmacCore core;
244 core = new HmacCore("SH
[all...]
H A DHmacMD5.java42 private HmacCore hmac;
49 hmac = new HmacCore(MessageDigest.getInstance("MD5"),
128 that.hmac = (HmacCore) this.hmac.clone();
H A DHmacSHA1.java42 private HmacCore hmac = null;
49 this.hmac = new HmacCore(MessageDigest.getInstance("SHA1"),
128 that.hmac = (HmacCore)this.hmac.clone();
H A DHmacPKCS12PBESHA1.java46 private HmacCore hmac = null;
53 this.hmac = new HmacCore(MessageDigest.getInstance("SHA1"),
198 that.hmac = (HmacCore)this.hmac.clone();

Completed in 41 milliseconds