Path: blob/master/src/java.base/share/classes/javax/crypto/interfaces/package-info.java
41159 views
/*1* Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425/**26* Provides interfaces for Diffie-Hellman keys as defined in RSA27* Laboratories' PKCS #3.28*29* <P>Note that these interfaces are intended only for key30* implementations whose key material is accessible and31* available. These interfaces are not intended for key implementations32* whose key material resides in inaccessible, protected storage (such33* as in a hardware device).34*35* <P>For more developer information on how to use these interfaces,36* including information on how to design <code>Key</code> classes for37* hardware devices, please refer to the cryptographic provider38* developer guide:39*40* <ul>41* <li> {@extLink security_guide_impl_provider42* How to Implement a Provider in the Java Cryptography Architecture}</li>43* </ul>44*45* <h2>Package Specification</h2>46*47* <ul>48* <li>PKCS #3: Diffie-Hellman Key-Agreement Standard, Version 1.4,49* November 1993.</li>50* </ul>51*52* <h2>Related Documentation</h2>53*54* For further documentation, please see:55* <ul>56* <li>57* {@extLink security_guide_jca58* Java Cryptography Architecture (JCA) Reference Guide}</li>59* </ul>60*61* @since 1.462*/63package javax.crypto.interfaces;646566