src/java.base/share/classes/javax/crypto/spec/package-info.java
author wetmore
Fri, 11 May 2018 15:53:12 -0700
branchJDK-8145252-TLS13-branch
changeset 56542 56aaa6cb3693
parent 47216 71c04702a3d5
child 56592 b1902b22005e
permissions -rw-r--r--
Initial TLSv1.3 Implementation
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
30788
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
     1
/*
45665
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 30788
diff changeset
     2
 * Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved.
30788
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
     4
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    10
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    15
 * accompanied this code).
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    16
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    20
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    23
 * questions.
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    24
 */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
30788
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    26
/**
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    27
 * Provides classes and interfaces for key specifications and
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    28
 * algorithm parameter specifications.
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    29
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    30
 * <p>A key specification is a transparent representation of the key
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    31
 * material that constitutes a key. A key may be specified in an
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    32
 * algorithm-specific way, or in an algorithm-independent encoding
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    33
 * format (such as ASN.1).  This package contains key specifications
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    34
 * for Diffie-Hellman public and private keys, as well as key
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    35
 * specifications for DES, Triple DES, and PBE secret keys.
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    36
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    37
 * <p>An algorithm parameter specification is a transparent
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    38
 * representation of the sets of parameters used with an
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    39
 * algorithm. This package contains algorithm parameter specifications
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    40
 * for parameters used with the Diffie-Hellman, DES, Triple DES, PBE,
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    41
 * RC2 and RC5 algorithms.
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    42
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    43
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    44
 * <ul>
56542
56aaa6cb3693 Initial TLSv1.3 Implementation
wetmore
parents: 47216
diff changeset
    45
 * <li>PKCS #1: RSA Cryptography Specifications, Version 2.2 (RFC 8017)</li>
30788
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    46
 * <li>PKCS #3: Diffie-Hellman Key-Agreement Standard, Version 1.4,
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    47
 * November 1993.</li>
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    48
 * <li>PKCS #5: Password-Based Encryption Standard, Version 1.5,
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    49
 * November 1993.</li>
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    50
 * <li>Federal Information Processing Standards Publication (FIPS PUB) 46-2:
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    51
 * Data Encryption Standard (DES) </li>
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    52
 * </ul>
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    53
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    54
 * <h2>Related Documentation</h2>
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    55
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    56
 * For documentation that includes information about algorithm
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    57
 * parameter and key specifications, please see:
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    58
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    59
 * <ul>
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    60
 * <li>
45665
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 30788
diff changeset
    61
 *    {@extLink security_guide_jca
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 30788
diff changeset
    62
 *      Java Cryptography Architecture (JCA) Reference Guide} </li>
30788
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    63
 * <li>
45665
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 30788
diff changeset
    64
 *    {@extLink security_guide_impl_provider
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 30788
diff changeset
    65
 *      How to Implement a Provider in the Java Cryptography Architecture}</li>
30788
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    66
 * </ul>
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    67
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    68
 * @since 1.4
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    69
 */
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 30678
diff changeset
    70
package javax.crypto.spec;