jdk/src/java.base/share/classes/java/security/package-info.java
author coleenp
Wed, 30 Aug 2017 19:18:22 -0400
changeset 47098 e704f55561c3
parent 45665 6f21cd7ec80e
permissions -rw-r--r--
8164207: Checking missing load-acquire in relation to _pd_set in dictionary.cpp Summary: Use load_acquire for accessing DictionaryEntry::_pd_set since it's accessed outside the SystemDictionary_lock Reviewed-by: zgu, twisti, dholmes, adinn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
     1
/*
45118
e4258d800b54 8178278: Move Standard Algorithm Names document to specs directory
ihse
parents: 25859
diff changeset
     2
 * Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved.
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
     4
 *
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    10
 *
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    15
 * accompanied this code).
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    16
 *
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    20
 *
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    23
 * questions.
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    24
 */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    26
/**
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    27
 * Provides the classes and interfaces for the security framework.
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    28
 * This includes classes that implement an easily configurable,
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    29
 * fine-grained access control security architecture.
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    30
 * This package also supports
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    31
 * the generation and storage of cryptographic public key pairs,
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    32
 * as well as a number of exportable cryptographic operations
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    33
 * including those for message digest and signature generation.  Finally,
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    34
 * this package provides classes that support signed/guarded objects
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    35
 * and secure random number generation.
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    36
 *
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    37
 * Many of the classes provided in this package (the cryptographic
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    38
 * and secure random number generator classes in particular) are
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    39
 * provider-based.  The class itself defines a programming interface
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    40
 * to which applications may write.  The implementations themselves may
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    41
 * then be written by independent third-party vendors and plugged
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    42
 * in seamlessly as needed.  Therefore application developers may
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    43
 * take advantage of any number of provider-based implementations
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    44
 * without having to add or rewrite code.
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    45
 *
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    46
 * <h2>Package Specification</h2>
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    47
 *
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    48
 * <ul>
45665
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 45118
diff changeset
    49
 *   <li> {@extLink security_guide_jca
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 45118
diff changeset
    50
 *     Java Cryptography Architecture (JCA) Reference Guide}</li>
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    51
 *
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    52
 *   <li>PKCS #8: Private-Key Information Syntax Standard, Version 1.2,
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    53
 *     November 1993</li>
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    54
 *
45118
e4258d800b54 8178278: Move Standard Algorithm Names document to specs directory
ihse
parents: 25859
diff changeset
    55
 *   <li><a href="{@docRoot}/../specs/security/standard-names.html">
45665
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 45118
diff changeset
    56
 *     Java Security Standard Algorithm Names Specification
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 45118
diff changeset
    57
 *     </a></li>
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    58
 * </ul>
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    59
 *
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    60
 * <h2>Related Documentation</h2>
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    61
 *
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    62
 * For further documentation, please see:
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    63
 * <ul>
45665
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 45118
diff changeset
    64
 *   <li> {@extLink security_guide_overview
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 45118
diff changeset
    65
 *     Java Security Overview} </li>
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    66
 *
45665
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 45118
diff changeset
    67
 *   <li> {@extLink security_guide_impl_provider
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 45118
diff changeset
    68
 *     How to Implement a Provider in the Java Cryptography Architecture}</li>
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    69
 *
45665
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 45118
diff changeset
    70
 *   <li> {@extLink security_guide_default_policy
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 45118
diff changeset
    71
 *     Default Policy Implementation and Policy File Syntax}</li>
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    72
 *
45665
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 45118
diff changeset
    73
 *   <li> {@extLink security_guide_permissions
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 45118
diff changeset
    74
 *     Permissions in the Java Development Kit (JDK)}</li>
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    75
 *
45665
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 45118
diff changeset
    76
 *   <li> {@extLink security_guide_tools
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 45118
diff changeset
    77
 *     Summary of Tools for Java Platform Security}
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 45118
diff changeset
    78
 *     (for example {@code keytool} and {@code jarsigner}),</li>
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    79
 *
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    80
 * </ul>
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    81
 *
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    82
 * @since 1.1
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    83
 */
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 9035
diff changeset
    84
package java.security;