src/java.base/share/classes/java/security/SignatureSpi.java
author jboes
Fri, 20 Sep 2019 11:07:52 +0100
changeset 58242 94bb65cb37d3
parent 54483 ac20c3bdc55d
permissions -rw-r--r--
8230648: Replace @exception tag with @throws in java.base Summary: Minor coding style update of javadoc tag in any file in java.base Reviewed-by: prappo, lancea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
54483
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2589
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2589
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2589
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2589
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2589
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.security;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.security.spec.AlgorithmParameterSpec;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.nio.ByteBuffer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import sun.security.jca.JCAUtil;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * This class defines the <i>Service Provider Interface</i> (<b>SPI</b>)
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 5506
diff changeset
    38
 * for the {@code Signature} class, which is used to provide the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * functionality of a digital signature algorithm. Digital signatures are used
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * for authentication and integrity assurance of digital data.
40789
43b42538af90 8165413: Typos in javadoc: extra period, wrong number, misspelled word
igerasim
parents: 28059
diff changeset
    41
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * <p> All the abstract methods in this class must be implemented by each
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * cryptographic service provider who wishes to supply the implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * of a particular signature algorithm.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * @author Benjamin Renaud
45434
4582657c7260 8181082: class-level since tag issues in java.base & java.datatransfer module
mli
parents: 40789
diff changeset
    47
 * @since 1.2
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * @see Signature
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
public abstract class SignatureSpi {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     * Application-specified source of randomness.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    protected SecureRandom appRandom = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * Initializes this signature object with the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * public key for verification operations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * @param publicKey the public key of the identity whose signature is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * going to be verified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
    67
     * @throws    InvalidKeyException if the key is improperly
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * encoded, parameters are missing, and so on.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    protected abstract void engineInitVerify(PublicKey publicKey)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        throws InvalidKeyException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * Initializes this signature object with the specified
54483
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    75
     * public key for verification operations.
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    76
     *
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    77
     * @param publicKey the public key of the identity whose signature is
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    78
     * going to be verified.
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    79
     * @param params the parameters for generating this signature
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    80
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
    81
     * @throws    InvalidKeyException if the key is improperly
54483
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    82
     * encoded, does not work with the given parameters, and so on.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
    83
     * @throws    InvalidAlgorithmParameterException if the given parameters
54483
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    84
     * is invalid.
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    85
     */
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    86
    void engineInitVerify(PublicKey publicKey,
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    87
            AlgorithmParameterSpec params)
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    88
            throws InvalidKeyException, InvalidAlgorithmParameterException {
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    89
        if (params != null) {
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    90
            try {
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    91
                engineSetParameter(params);
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    92
            } catch (UnsupportedOperationException usoe) {
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    93
                // error out if not overrridden
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    94
                throw new InvalidAlgorithmParameterException(usoe);
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    95
            }
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    96
        }
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    97
        engineInitVerify(publicKey);
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    98
    }
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
    99
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   100
    /**
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   101
     * Initializes this signature object with the specified
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * private key for signing operations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * @param privateKey the private key of the identity whose signature
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * will be generated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
   107
     * @throws    InvalidKeyException if the key is improperly
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * encoded, parameters are missing, and so on.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    protected abstract void engineInitSign(PrivateKey privateKey)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        throws InvalidKeyException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * Initializes this signature object with the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * private key and source of randomness for signing operations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * <p>This concrete method has been added to this previously-defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * abstract class. (For backwards compatibility, it cannot be abstract.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * @param privateKey the private key of the identity whose signature
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * will be generated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * @param random the source of randomness
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
   124
     * @throws    InvalidKeyException if the key is improperly
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * encoded, parameters are missing, and so on.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    protected void engineInitSign(PrivateKey privateKey,
54483
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   128
            SecureRandom random)
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   129
            throws InvalidKeyException {
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   130
        this.appRandom = random;
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   131
        engineInitSign(privateKey);
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   132
    }
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   133
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   134
    /**
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   135
     * Initializes this signature object with the specified
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   136
     * private key and source of randomness for signing operations.
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   137
     *
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   138
     * <p>This concrete method has been added to this previously-defined
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   139
     * abstract class. (For backwards compatibility, it cannot be abstract.)
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   140
     *
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   141
     * @param privateKey the private key of the identity whose signature
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   142
     * will be generated.
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   143
     * @param params the parameters for generating this signature
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   144
     * @param random the source of randomness
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   145
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
   146
     * @throws    InvalidKeyException if the key is improperly
54483
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   147
     * encoded, parameters are missing, and so on.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
   148
     * @throws    InvalidAlgorithmParameterException if the parameters is
54483
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   149
     * invalid.
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   150
     */
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   151
    void engineInitSign(PrivateKey privateKey,
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   152
            AlgorithmParameterSpec params, SecureRandom random)
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   153
            throws InvalidKeyException, InvalidAlgorithmParameterException {
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   154
        if (params != null) {
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   155
            try {
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   156
                engineSetParameter(params);
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   157
            } catch (UnsupportedOperationException usoe) {
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   158
                // error out if not overrridden
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   159
                throw new InvalidAlgorithmParameterException(usoe);
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   160
            }
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   161
        }
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   162
        engineInitSign(privateKey, random);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * Updates the data to be signed or verified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * using the specified byte.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * @param b the byte to use for the update.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
   171
     * @throws    SignatureException if the engine is not initialized
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * properly.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    protected abstract void engineUpdate(byte b) throws SignatureException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * Updates the data to be signed or verified, using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * specified array of bytes, starting at the specified offset.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * @param b the array of bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * @param off the offset to start from in the array of bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * @param len the number of bytes to use, starting at offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
   184
     * @throws    SignatureException if the engine is not initialized
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * properly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    protected abstract void engineUpdate(byte[] b, int off, int len)
54483
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   188
            throws SignatureException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * Updates the data to be signed or verified using the specified
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 5506
diff changeset
   192
     * ByteBuffer. Processes the {@code data.remaining()} bytes
28059
e576535359cc 8067377: My hobby: caning, then then canning, the the can-can
martin
parents: 25859
diff changeset
   193
     * starting at {@code data.position()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * Upon return, the buffer's position will be equal to its limit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * its limit will not have changed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * @param input the ByteBuffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    protected void engineUpdate(ByteBuffer input) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        if (input.hasRemaining() == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
            if (input.hasArray()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
                byte[] b = input.array();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
                int ofs = input.arrayOffset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
                int pos = input.position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
                int lim = input.limit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
                engineUpdate(b, ofs + pos, lim - pos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
                input.position(lim);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
                int len = input.remaining();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
                byte[] b = new byte[JCAUtil.getTempArraySize(len)];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
                while (len > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
                    int chunk = Math.min(len, b.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
                    input.get(b, 0, chunk);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
                    engineUpdate(b, 0, chunk);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
                    len -= chunk;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        } catch (SignatureException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            // is specified to only occur when the engine is not initialized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
            // this case should never occur as it is caught in Signature.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
            throw new ProviderException("update() failed", e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * Returns the signature bytes of all the data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * updated so far.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * The format of the signature depends on the underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * signature scheme.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * @return the signature bytes of the signing operation's result.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
   237
     * @throws    SignatureException if the engine is not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     * initialized properly or if this signature algorithm is unable to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     * process the input data provided.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
    protected abstract byte[] engineSign() throws SignatureException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     * Finishes this signature operation and stores the resulting signature
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 5506
diff changeset
   245
     * bytes in the provided buffer {@code outbuf}, starting at
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 5506
diff changeset
   246
     * {@code offset}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * The format of the signature depends on the underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * signature scheme.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * <p>The signature implementation is reset to its initial state
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * (the state it was in after a call to one of the
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 5506
diff changeset
   252
     * {@code engineInitSign} methods)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * and can be reused to generate further signatures with the same private
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     * This method should be abstract, but we leave it concrete for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * binary compatibility.  Knowledgeable providers should override this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * @param outbuf buffer for the signature result.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 5506
diff changeset
   262
     * @param offset offset into {@code outbuf} where the signature is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * stored.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 5506
diff changeset
   265
     * @param len number of bytes within {@code outbuf} allotted for the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * signature.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * Both this default implementation and the SUN provider do not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * return partial digests. If the value of this parameter is less
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * than the actual signature length, this method will throw a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * SignatureException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * This parameter is ignored if its value is greater than or equal to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * the actual signature length.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 5506
diff changeset
   274
     * @return the number of bytes placed into {@code outbuf}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
   276
     * @throws    SignatureException if the engine is not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * initialized properly, if this signature algorithm is unable to
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 5506
diff changeset
   278
     * process the input data provided, or if {@code len} is less
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * than the actual signature length.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
    protected int engineSign(byte[] outbuf, int offset, int len)
54483
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   284
             throws SignatureException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        byte[] sig = engineSign();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
        if (len < sig.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
                throw new SignatureException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
                    ("partial signatures not returned");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
        if (outbuf.length - offset < sig.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                throw new SignatureException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                    ("insufficient space in the output buffer to store the "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
                     + "signature");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        System.arraycopy(sig, 0, outbuf, offset, sig.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        return sig.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     * Verifies the passed-in signature.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * @param sigBytes the signature bytes to be verified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     * @return true if the signature was verified, false if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
   306
     * @throws    SignatureException if the engine is not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * initialized properly, the passed-in signature is improperly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * encoded or of the wrong type, if this signature algorithm is unable to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * process the input data provided, etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
    protected abstract boolean engineVerify(byte[] sigBytes)
54483
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   312
            throws SignatureException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * Verifies the passed-in signature in the specified array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * of bytes, starting at the specified offset.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * <p> Note: Subclasses should overwrite the default implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * @param sigBytes the signature bytes to be verified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * @param offset the offset to start from in the array of bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * @param length the number of bytes to use, starting at offset.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * @return true if the signature was verified, false if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
   327
     * @throws    SignatureException if the engine is not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * initialized properly, the passed-in signature is improperly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * encoded or of the wrong type, if this signature algorithm is unable to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * process the input data provided, etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    protected boolean engineVerify(byte[] sigBytes, int offset, int length)
54483
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   334
            throws SignatureException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        byte[] sigBytesCopy = new byte[length];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        System.arraycopy(sigBytes, offset, sigBytesCopy, 0, length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        return engineVerify(sigBytesCopy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * Sets the specified algorithm parameter to the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * value. This method supplies a general-purpose mechanism through
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * which it is possible to set the various parameters of this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * A parameter may be any settable parameter for the algorithm, such as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * a parameter size, or a source of random bits for signature generation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * (if appropriate), or an indication of whether or not to perform
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * a specific but optional computation. A uniform algorithm-specific
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     * naming scheme for each parameter is desirable but left unspecified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * at this time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * @param param the string identifier of the parameter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * @param value the parameter value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
   355
     * @throws    InvalidParameterException if {@code param} is an
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * invalid parameter for this signature algorithm engine,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * the parameter is already set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * and cannot be set again, a security exception occurs, and so on.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * @deprecated Replaced by {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * #engineSetParameter(java.security.spec.AlgorithmParameterSpec)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * engineSetParameter}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
    protected abstract void engineSetParameter(String param, Object value)
54483
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   366
            throws InvalidParameterException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     * <p>This method is overridden by providers to initialize
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     * this signature engine with the specified parameter set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * @param params the parameters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
   374
     * @throws    UnsupportedOperationException if this method is not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * overridden by a provider
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
   377
     * @throws    InvalidAlgorithmParameterException if this method is
2589
af4853bc7e87 6827153: Miscellaneous typos in javadoc
martin
parents: 2
diff changeset
   378
     * overridden by a provider and the given parameters
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * are inappropriate for this signature engine
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    protected void engineSetParameter(AlgorithmParameterSpec params)
54483
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   382
            throws InvalidAlgorithmParameterException {
ac20c3bdc55d 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange
valeriep
parents: 51229
diff changeset
   383
        throw new UnsupportedOperationException();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    /**
51229
17b7d7034e8e 8206171: Signature#getParameters for RSASSA-PSS throws ProviderException when not initialized
valeriep
parents: 47216
diff changeset
   387
     * <p>This method is overridden by providers to return the parameters
17b7d7034e8e 8206171: Signature#getParameters for RSASSA-PSS throws ProviderException when not initialized
valeriep
parents: 47216
diff changeset
   388
     * used with this signature engine.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     *
51229
17b7d7034e8e 8206171: Signature#getParameters for RSASSA-PSS throws ProviderException when not initialized
valeriep
parents: 47216
diff changeset
   390
     * <p> If this signature engine has been previously initialized with
17b7d7034e8e 8206171: Signature#getParameters for RSASSA-PSS throws ProviderException when not initialized
valeriep
parents: 47216
diff changeset
   391
     * parameters (by calling the {@code engineSetParameter} method), this
17b7d7034e8e 8206171: Signature#getParameters for RSASSA-PSS throws ProviderException when not initialized
valeriep
parents: 47216
diff changeset
   392
     * method returns the same parameters. If this signature engine has not been
17b7d7034e8e 8206171: Signature#getParameters for RSASSA-PSS throws ProviderException when not initialized
valeriep
parents: 47216
diff changeset
   393
     * initialized with parameters, this method may return a combination of
17b7d7034e8e 8206171: Signature#getParameters for RSASSA-PSS throws ProviderException when not initialized
valeriep
parents: 47216
diff changeset
   394
     * default and randomly generated parameter values if the underlying
17b7d7034e8e 8206171: Signature#getParameters for RSASSA-PSS throws ProviderException when not initialized
valeriep
parents: 47216
diff changeset
   395
     * signature implementation supports it and can successfully generate
17b7d7034e8e 8206171: Signature#getParameters for RSASSA-PSS throws ProviderException when not initialized
valeriep
parents: 47216
diff changeset
   396
     * them. Otherwise, {@code null} is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     *
51229
17b7d7034e8e 8206171: Signature#getParameters for RSASSA-PSS throws ProviderException when not initialized
valeriep
parents: 47216
diff changeset
   398
     * @return the parameters used with this signature engine, or {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
   400
     * @throws    UnsupportedOperationException if this method is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * not overridden by a provider
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    protected AlgorithmParameters engineGetParameters() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
        throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     * Gets the value of the specified algorithm parameter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     * This method supplies a general-purpose mechanism through which it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * is possible to get the various parameters of this object. A parameter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     * may be any settable parameter for the algorithm, such as a parameter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     * size, or  a source of random bits for signature generation (if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
     * appropriate), or an indication of whether or not to perform a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
     * specific but optional computation. A uniform algorithm-specific
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     * naming scheme for each parameter is desirable but left unspecified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     * at this time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * @param param the string name of the parameter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     *
51229
17b7d7034e8e 8206171: Signature#getParameters for RSASSA-PSS throws ProviderException when not initialized
valeriep
parents: 47216
diff changeset
   421
     * @return the object that represents the parameter value, or {@code null} if
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     * there is none.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
   424
     * @throws    InvalidParameterException if {@code param} is an
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * invalid parameter for this engine, or another exception occurs while
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * trying to get this parameter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * @deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
    protected abstract Object engineGetParameter(String param)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
        throws InvalidParameterException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * Returns a clone if the implementation is cloneable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * @return a clone if the implementation is cloneable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 54483
diff changeset
   439
     * @throws    CloneNotSupportedException if this is called
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 5506
diff changeset
   440
     * on an implementation that does not support {@code Cloneable}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
    public Object clone() throws CloneNotSupportedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
        if (this instanceof Cloneable) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
            return super.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
            throw new CloneNotSupportedException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
}