< prev index next >

src/java.base/share/classes/java/security/KeyFactorySpi.java

Print this page
rev 56290 : 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
   1 /*
   2  * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  60  * @see Key
  61  * @see PublicKey
  62  * @see PrivateKey
  63  * @see java.security.spec.KeySpec
  64  * @see java.security.spec.DSAPublicKeySpec
  65  * @see java.security.spec.X509EncodedKeySpec
  66  *
  67  * @since 1.2
  68  */
  69 
  70 public abstract class KeyFactorySpi {
  71 
  72     /**
  73      * Generates a public key object from the provided key
  74      * specification (key material).
  75      *
  76      * @param keySpec the specification (key material) of the public key.
  77      *
  78      * @return the public key.
  79      *
  80      * @exception InvalidKeySpecException if the given key specification
  81      * is inappropriate for this key factory to produce a public key.
  82      */
  83     protected abstract PublicKey engineGeneratePublic(KeySpec keySpec)
  84         throws InvalidKeySpecException;
  85 
  86     /**
  87      * Generates a private key object from the provided key
  88      * specification (key material).
  89      *
  90      * @param keySpec the specification (key material) of the private key.
  91      *
  92      * @return the private key.
  93      *
  94      * @exception InvalidKeySpecException if the given key specification
  95      * is inappropriate for this key factory to produce a private key.
  96      */
  97     protected abstract PrivateKey engineGeneratePrivate(KeySpec keySpec)
  98         throws InvalidKeySpecException;
  99 
 100     /**
 101      * Returns a specification (key material) of the given key
 102      * object.
 103      * {@code keySpec} identifies the specification class in which
 104      * the key material should be returned. It could, for example, be
 105      * {@code DSAPublicKeySpec.class}, to indicate that the
 106      * key material should be returned in an instance of the
 107      * {@code DSAPublicKeySpec} class.
 108      *
 109      * @param <T> the type of the key specification to be returned
 110      *
 111      * @param key the key.
 112      *
 113      * @param keySpec the specification class in which
 114      * the key material should be returned.
 115      *
 116      * @return the underlying key specification (key material) in an instance
 117      * of the requested specification class.
 118 
 119      * @exception InvalidKeySpecException if the requested key specification is
 120      * inappropriate for the given key, or the given key cannot be dealt with
 121      * (e.g., the given key has an unrecognized format).
 122      */
 123     protected abstract <T extends KeySpec>
 124         T engineGetKeySpec(Key key, Class<T> keySpec)
 125         throws InvalidKeySpecException;
 126 
 127     /**
 128      * Translates a key object, whose provider may be unknown or
 129      * potentially untrusted, into a corresponding key object of this key
 130      * factory.
 131      *
 132      * @param key the key whose provider is unknown or untrusted.
 133      *
 134      * @return the translated key.
 135      *
 136      * @exception InvalidKeyException if the given key cannot be processed
 137      * by this key factory.
 138      */
 139     protected abstract Key engineTranslateKey(Key key)
 140         throws InvalidKeyException;
 141 
 142 }
   1 /*
   2  * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  60  * @see Key
  61  * @see PublicKey
  62  * @see PrivateKey
  63  * @see java.security.spec.KeySpec
  64  * @see java.security.spec.DSAPublicKeySpec
  65  * @see java.security.spec.X509EncodedKeySpec
  66  *
  67  * @since 1.2
  68  */
  69 
  70 public abstract class KeyFactorySpi {
  71 
  72     /**
  73      * Generates a public key object from the provided key
  74      * specification (key material).
  75      *
  76      * @param keySpec the specification (key material) of the public key.
  77      *
  78      * @return the public key.
  79      *
  80      * @throws    InvalidKeySpecException if the given key specification
  81      * is inappropriate for this key factory to produce a public key.
  82      */
  83     protected abstract PublicKey engineGeneratePublic(KeySpec keySpec)
  84         throws InvalidKeySpecException;
  85 
  86     /**
  87      * Generates a private key object from the provided key
  88      * specification (key material).
  89      *
  90      * @param keySpec the specification (key material) of the private key.
  91      *
  92      * @return the private key.
  93      *
  94      * @throws    InvalidKeySpecException if the given key specification
  95      * is inappropriate for this key factory to produce a private key.
  96      */
  97     protected abstract PrivateKey engineGeneratePrivate(KeySpec keySpec)
  98         throws InvalidKeySpecException;
  99 
 100     /**
 101      * Returns a specification (key material) of the given key
 102      * object.
 103      * {@code keySpec} identifies the specification class in which
 104      * the key material should be returned. It could, for example, be
 105      * {@code DSAPublicKeySpec.class}, to indicate that the
 106      * key material should be returned in an instance of the
 107      * {@code DSAPublicKeySpec} class.
 108      *
 109      * @param <T> the type of the key specification to be returned
 110      *
 111      * @param key the key.
 112      *
 113      * @param keySpec the specification class in which
 114      * the key material should be returned.
 115      *
 116      * @return the underlying key specification (key material) in an instance
 117      * of the requested specification class.
 118 
 119      * @throws    InvalidKeySpecException if the requested key specification is
 120      * inappropriate for the given key, or the given key cannot be dealt with
 121      * (e.g., the given key has an unrecognized format).
 122      */
 123     protected abstract <T extends KeySpec>
 124         T engineGetKeySpec(Key key, Class<T> keySpec)
 125         throws InvalidKeySpecException;
 126 
 127     /**
 128      * Translates a key object, whose provider may be unknown or
 129      * potentially untrusted, into a corresponding key object of this key
 130      * factory.
 131      *
 132      * @param key the key whose provider is unknown or untrusted.
 133      *
 134      * @return the translated key.
 135      *
 136      * @throws    InvalidKeyException if the given key cannot be processed
 137      * by this key factory.
 138      */
 139     protected abstract Key engineTranslateKey(Key key)
 140         throws InvalidKeyException;
 141 
 142 }
< prev index next >