Uses of Class
net.shibboleth.utilities.java.support.security.DataSealerException
-
Packages that use DataSealerException Package Description net.shibboleth.utilities.java.support.security Helpers for common security related tasks. -
-
Uses of DataSealerException in net.shibboleth.utilities.java.support.security
Subclasses of DataSealerException in net.shibboleth.utilities.java.support.security Modifier and Type Class Description classDataExpiredExceptionIndicates the sealed data has expired.Methods in net.shibboleth.utilities.java.support.security that throw DataSealerException Modifier and Type Method Description private StringDataSealer. extractAndCheckDecryptedData(byte[] decryptedBytes)Extract the GZIP'd data and test for expiration before returning it.private voidDataSealer. testEncryption(SecretKey key)Run a test over the configured bean properties.StringDataSealer. unwrap(String wrapped)Decrypts and verifies an encrypted bundle created withDataSealer.wrap(String, Instant).StringDataSealer. unwrap(String wrapped, StringBuffer keyUsed)Decrypts and verifies an encrypted bundle created withDataSealer.wrap(String, Instant), optionally returning the label of the key used to encrypt the data.StringDataSealer. wrap(String data)Equivalent toDataSealer.wrap(String, Instant)with expiration set to "never".StringDataSealer. wrap(String data, Instant exp)Encodes data into an AEAD-encrypted blob, gzip(exp|data) exp = expiration time of the data; 8 bytes; Big-endian data = the data; a UTF-8-encoded string
-