Searched refs:KeyException (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/
H A DKeyException.java38 public class KeyException extends GeneralSecurityException { class in inherits:GeneralSecurityException
43 * Constructs a KeyException with no detail message. A detail
46 public KeyException() { method in class:KeyException
51 * Constructs a KeyException with the specified detail message.
57 public KeyException(String msg) { method in class:KeyException
62 * Creates a <code>KeyException</code> with the specified
72 public KeyException(String message, Throwable cause) { method in class:KeyException
77 * Creates a <code>KeyException</code> with the specified cause
87 public KeyException(Throwable cause) { method in class:KeyException
H A DCertificate.java104 * @exception KeyException if the certificate is not
114 throws KeyException, IOException;
124 * @exception KeyException if the certificate is not properly initialized,
134 throws KeyException, IOException;
H A DInvalidKeyException.java36 public class InvalidKeyException extends KeyException {
H A DKeyManagementException.java43 * @see KeyException
46 public class KeyManagementException extends KeyException {
H A DSigner.java124 * @exception KeyException if the key pair cannot be set for any
133 throws InvalidParameterException, KeyException {
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/keyinfo/
H A DKeyValue.java30 import java.security.KeyException;
130 * @throws KeyException if this <code>KeyValue</code> cannot be converted
133 PublicKey getPublicKey() throws KeyException;
H A DKeyInfoFactory.java31 import java.security.KeyException;
343 * @throws KeyException if the <code>key</code>'s algorithm is not
347 public abstract KeyValue newKeyValue(PublicKey key) throws KeyException;
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DRSAPublicKey.java30 import java.security.KeyException;
99 } catch (KeyException e) {
118 } catch (KeyException e) {
163 } catch (KeyException e) {
180 private native byte[] getPublicKeyBlob(long hCryptKey) throws KeyException;
185 private native byte[] getExponent(byte[] keyBlob) throws KeyException;
190 private native byte[] getModulus(byte[] keyBlob) throws KeyException;
H A DRSAKeyPairGenerator.java117 } catch (KeyException e) {
123 String keyContainerName) throws KeyException;
H A DRSACipher.java296 } catch (KeyException e) {
460 long hCryptKey, boolean doEncrypt) throws KeyException;
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMKeyValue.java34 import java.security.KeyException;
66 public DOMKeyValue(PublicKey key) throws KeyException {
83 throw new KeyException("unsupported key algorithm: " +
105 public PublicKey getPublicKey() throws KeyException {
107 throw new KeyException("can't convert KeyValue to PublicKey");
265 } catch (KeyException ke) {
H A DDOMKeyInfoFactory.java30 import java.security.KeyException;
62 public KeyValue newKeyValue(PublicKey key) throws KeyException {
/openjdk7/jdk/test/java/security/Exceptions/
H A DChainingConstructors.java96 KeyException ke = new KeyException(cause);
100 ke = new KeyException(MSG, cause);
/openjdk7/jdk/test/javax/xml/crypto/dsig/
H A DKeySelectors.java26 import java.security.KeyException;
163 } catch (KeyException ke) {

Completed in 57 milliseconds