| Modifier and Type | Field and Description |
|---|---|
static Crypt |
Crypt.AES128
The encryption algorithm AES with 128 Bits key size.
|
static Crypt |
Crypt.AES192
The encryption algorithm AES with 192 Bits key size.
|
static Crypt |
Crypt.AES256
The encryption algorithm AES with 256 Bits key size.
|
static Crypt |
Crypt.Blowfish128
Bruce Schneiers encryption algorithm Blowfish with 128 Bits key size.
|
static Crypt |
Crypt.Blowfish192
Bruce Schneiers encryption algorithm Blowfish with 192 Bits key size.
|
static Crypt |
Crypt.Blowfish256
Bruce Schneiers encryption algorithm Blowfish with 256 Bits key size.
|
static Crypt |
Crypt.DES192
The encryption algorithm Triple-DES with 192 Bits key size (effective key size 168 bits,
the effective key size for brute force is smaller than 168 bits).
|
static Crypt |
Crypt.DES64
The encryption algorithm DES with 64 Bits key size (effective key size 56 bits!).
|
| Constructor and Description |
|---|
CryptInputStream(Crypt crypt,
InputStream input,
byte[] passwordBytes)
An input stream for the specified
Crypt. |
CryptInputStream(Crypt crypt,
InputStream input,
CharSequence password)
An input stream for the specified
Crypt. |
CryptOutputStream(Crypt crypt,
OutputStream output,
byte[] passwordBytes)
An output stream for the specified
Crypt. |
CryptOutputStream(Crypt crypt,
OutputStream output,
CharSequence password)
An output stream for the specified
Crypt. |
Copyright © 2014 Michael Bock. All rights reserved.