< prev index next >

src/java.base/share/classes/com/sun/crypto/provider/HmacCore.java

Print this page
rev 13987 : 8051408: NIST SP 800-90A SecureRandom implementations

*** 260,265 **** --- 260,275 ---- public static final class HmacSHA512 extends HmacCore { public HmacSHA512() throws NoSuchAlgorithmException { super("SHA-512", 128); } } + public static final class HmacSHA512_224 extends HmacCore { + public HmacSHA512_224() throws NoSuchAlgorithmException { + super("SHA-512/224", 128); + } + } + public static final class HmacSHA512_256 extends HmacCore { + public HmacSHA512_256() throws NoSuchAlgorithmException { + super("SHA-512/256", 128); + } + } }
< prev index next >