Uses of Class
org.soulwing.s2ks.KeyStorageException
-
Packages that use KeyStorageException Package Description org.soulwing.s2ks API package -
-
Uses of KeyStorageException in org.soulwing.s2ks
Subclasses of KeyStorageException in org.soulwing.s2ks Modifier and Type Class Description classKeyUnwrapExceptionAn exception thrown to indicate that an unexpected error (e.g.classKeyWrapExceptionAn exception thrown to indicate that an unexpected error (e.g.classMetadataUnwrapExceptionAn exception thrown to indicate that there was a problem decoding metadata associated with a stored key.classMetadataWrapExceptionAn exception thrown to indicate that there was a problem encoding metadata associated with a stored key.classNoSuchKeyExceptionAn exception thrown to indicate that an attempt to retrieve a key from storage failed, because there is no stored key with the given identifier.Methods in org.soulwing.s2ks that throw KeyStorageException Modifier and Type Method Description java.security.KeyKeyStorage. retrieve(java.lang.String id)Retrieves a key.java.util.List<java.security.cert.X509Certificate>KeyPairStorage. retrieveCertificates(java.lang.String id)Retrieves the certificates associated for a key pair.KeyPairInfoKeyPairStorage. retrieveKeyPair(java.lang.String id)Retrieves the key pair with the given identifier.KeyWithMetadataKeyStorage. retrieveWithMetadata(java.lang.String id)Retrieves a key and its associated metadata.voidMutableKeyStorage. store(java.lang.String id, java.security.Key key)Stores a key using the given identifier, replacing any existing key with the same identifier.voidMutableKeyStorage. store(java.lang.String id, KeyWithMetadata keyWithMetadata)Stores a key and associated metadata using the given identifier, replacing any existing key and metadata with the same identifier.
-