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

/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DHmacCore.java50 private final byte[] k_opad; // outer padding - key XORd with opad field in class:HmacCore
63 this.k_opad = new byte[blockLen];
82 this.k_opad = (byte[])other.k_opad.clone();
136 k_opad[i] = (byte)(si ^ 0x5c);
210 md.update(k_opad);

Completed in 28 milliseconds