src/java.base/share/classes/java/security/interfaces/RSAPrivateCrtKey.java
branchJDK-8145252-TLS13-branch
changeset 56542 56aaa6cb3693
parent 47216 71c04702a3d5
child 51317 e122220d7d7e
equal deleted inserted replaced
56541:92cbbfc996f3 56542:56aaa6cb3693
     1 /*
     1 /*
     2  * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    26 package java.security.interfaces;
    26 package java.security.interfaces;
    27 
    27 
    28 import java.math.BigInteger;
    28 import java.math.BigInteger;
    29 
    29 
    30 /**
    30 /**
    31  * The interface to an RSA private key, as defined in the PKCS#1 standard,
    31  * The interface to an RSA private key, as defined in the
       
    32  * <a href="https://tools.ietf.org/rfc/rfc8017.txt">PKCS#1 v2.2</a> standard,
    32  * using the <i>Chinese Remainder Theorem</i> (CRT) information values.
    33  * using the <i>Chinese Remainder Theorem</i> (CRT) information values.
    33  *
    34  *
    34  * @author Jan Luehe
    35  * @author Jan Luehe
    35  * @since 1.2
    36  * @since 1.2
    36  *
    37  *