Uses of Class
rs.baselib.crypto.EncryptionException
| Package | Description |
|---|---|
| rs.baselib.crypto |
Provides support for encrypting, decrypting and signing streams.
|
-
Uses of EncryptionException in rs.baselib.crypto
Methods in rs.baselib.crypto that throw EncryptionException Modifier and Type Method Description byte[]Encrypter. encrypt(byte[] bytes)Encrypt a byte arrayjava.lang.StringEncrypter. encrypt(java.lang.String str)Takes a single String as an argument and returns an encrypted version of that string.Constructors in rs.baselib.crypto that throw EncryptionException Constructor Description Encrypter(byte[] bytephrase, byte[] salt, int iterationCount)Constructor from passphrase, salt and iteration spec.Encrypter(char[] passphrase)Constructor from passphrase.Encrypter(char[] passphrase, byte[] salt)Constructor from passphrase.Encrypter(java.lang.String passphrase)Constructor from passphrase.Encrypter(java.lang.String passphrase, byte[] salt)Constructor from passphrase.Encrypter(java.lang.String passPhrase, byte[] salt, int iterationCount)Constructor from passphrase, salt and iteration spec.Encrypter(java.security.Key key, java.lang.String algorithm)Constructor from secret key.Encrypter(java.security.Key key, java.lang.String algorithm, byte[] salt, int iterationCount)Constructor from secret key.Encrypter(java.security.Key key, java.lang.String algorithm, java.security.spec.AlgorithmParameterSpec paramSpec)Constructor from secret key.