Uses of Class
org.iqtig.packer.shared.error.crypto.CryptoException
-
Packages that use CryptoException Package Description org.iqtig.packer.shared.crypto -
-
Uses of CryptoException in org.iqtig.packer.shared.crypto
Methods in org.iqtig.packer.shared.crypto that throw CryptoException Modifier and Type Method Description SecretKey
CryptographySupportShared. createRandomAESSessionKey()
SecretKey
CryptographySupportShared. createRandomAESSessionKey256Bit()
IvParameterSpec
CryptographySupportShared. createRandomIV()
void
CryptographySupportShared. decrypt(InputStream inputStream, OutputStream outputStream, Function<byte[],SecretKey> secretKeyUnwrapper)
Entschlüsselt den eigenhenden InputStream und schreibt das Resultat auf den gegebenen OutputStream.void
CryptographySupportShared. decrypt(InputStream inputStream, OutputStream outputStream, SecretKey secretKey)
void
CryptographySupportShared. encrypt(InputStream inputstream, OutputStream outputStream, SecretKey secretKey)
void
CryptographySupportShared. encrypt(InputStream inputStream, OutputStream outputStream, SecretKey secretKey, Function<SecretKey,byte[]> secredKeyWrapper)
Verschlüsselt den Inhalt eines eingehenden InputStreams und schreibt das Resultat auf den gegebenen OutputStream.PrivateKey
CryptographySupportShared. readPrivateKeyFromKeyStore(InputStream keyStoreStream, String keystorePassword, String keyAlias, String keyentryPassword)
PrivateKey
CryptographySupportShared. readPrivateKeyFromPem(InputStream inputStream)
PublicKey
CryptographySupportShared. readPublicKeyFromKeyStore(InputStream keyStoreStream, String keystorePassword, String keyAlias)
PublicKey
CryptographySupportShared. readPublicKeyFromPem(InputStream inputStream)
X509Certificate
CryptographySupportShared. readX509Certificate(InputStream certificateInputStream)
SecretKey
CryptographySupportShared. unwrapSecretKey(byte[] wrappedSecretKey, PrivateKey privateKey)
byte[]
CryptographySupportShared. wrapSecretKey(SecretKey secretKey, PublicKey publicKey)
-