src/share/classes/sun/security/rsa/RSASignature.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 38,49 **** /** * PKCS#1 RSA signatures with the various message digest algorithms. * This file contains an abstract base class with all the logic plus * a nested static class for each of the message digest algorithms ! * (see end of the file). We support MD2, MD5, SHA-1, SHA-256, SHA-384, ! * and SHA-512. * * @since 1.5 * @author Andreas Sterbenz */ public abstract class RSASignature extends SignatureSpi { --- 38,49 ---- /** * PKCS#1 RSA signatures with the various message digest algorithms. * This file contains an abstract base class with all the logic plus * a nested static class for each of the message digest algorithms ! * (see end of the file). We support MD2, MD5, SHA-1, SHA-224, SHA-256, ! * SHA-384, and SHA-512. * * @since 1.5 * @author Andreas Sterbenz */ public abstract class RSASignature extends SignatureSpi {
*** 277,286 **** --- 277,293 ---- public SHA1withRSA() { super("SHA-1", AlgorithmId.SHA_oid, 7); } } + // Nested class for SHA224withRSA signatures + public static final class SHA224withRSA extends RSASignature { + public SHA224withRSA() { + super("SHA-224", AlgorithmId.SHA224_oid, 11); + } + } + // Nested class for SHA256withRSA signatures public static final class SHA256withRSA extends RSASignature { public SHA256withRSA() { super("SHA-256", AlgorithmId.SHA256_oid, 11); }