jdk/src/java.base/share/classes/javax/crypto/package-info.java
author darcy
Fri, 22 May 2015 10:45:59 -0700
changeset 30788 ea573d35531a
parent 29492 jdk/src/java.base/share/classes/javax/crypto/package.html@a4bf9a570035
child 45118 e4258d800b54
permissions -rw-r--r--
8080901: Replace package.html files with package-info.java in the java.base module Reviewed-by: lancea, alanb, vinnie
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: 29492
diff changeset
     1
/*
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
     2
 * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
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: 29492
diff changeset
     4
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
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: 29492
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: 29492
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: 29492
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: 29492
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: 29492
diff changeset
    10
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
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: 29492
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: 29492
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: 29492
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: 29492
diff changeset
    15
 * accompanied this code).
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    16
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
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: 29492
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: 29492
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: 29492
diff changeset
    20
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
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: 29492
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: 29492
diff changeset
    23
 * questions.
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
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: 29492
diff changeset
    26
/**
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    27
 * Provides the classes and interfaces for cryptographic
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    28
 * operations. The cryptographic operations defined in this package
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    29
 * include encryption, key generation and key agreement, and Message
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    30
 * Authentication Code (MAC) generation.
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    31
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    32
 * <p>Support for encryption includes symmetric, asymmetric, block,
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    33
 * and stream ciphers. This package also supports secure streams and
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    34
 * sealed objects.
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    35
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    36
 * <p>Many of the classes provided in this package are provider-based.
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    37
 * The class itself defines a programming interface to which
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    38
 * applications may write.  The implementations themselves may then be
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    39
 * written by independent third-party vendors and plugged in
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    40
 * seamlessly as needed.  Therefore application developers may take
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    41
 * advantage of any number of provider-based implementations without
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    42
 * having to add or rewrite code.
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    43
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    44
 * <ul>
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    45
 *   <li><a href="{@docRoot}/../technotes/guides/security/StandardNames.html">
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    46
 *     <b>Java&trade; Cryptography Architecture Standard Algorithm Name
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    47
 *     Documentation</b></a></li>
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    48
 * </ul>
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    49
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    50
 * <h2>Related Documentation</h2>
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    51
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    52
 * For further documentation, please see:
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    53
 * <ul>
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    54
 *   <li>
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    55
 *     <a href=
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    56
 *       "{@docRoot}/../technotes/guides/security/crypto/CryptoSpec.html">
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    57
 *       <b>Java&trade; Cryptography Architecture (JCA) Reference Guide
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    58
 *       </b></a></li>
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    59
 *   <li>
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    60
 *     <a href=
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    61
 *       "{@docRoot}/../technotes/guides/security/crypto/HowToImplAProvider.html">
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    62
 *       <b>How to Implement a Provider in the Java&trade; Cryptography
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    63
 *          Architecture </b></a></li>
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    64
 * </ul>
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    65
 *
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    66
 * @since 1.4
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    67
 */
ea573d35531a 8080901: Replace package.html files with package-info.java in the java.base module
darcy
parents: 29492
diff changeset
    68
package javax.crypto;