|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.hadoop.hbase.io.crypto.Encryption
@InterfaceAudience.Public @InterfaceStability.Unstable public final class Encryption
A facade for encryption algorithms and related support.
| Nested Class Summary | |
|---|---|
static class |
Encryption.Context
Crypto context |
| Method Summary | |
|---|---|
static void |
decrypt(byte[] dest,
int destOffset,
InputStream in,
int destSize,
Decryptor d)
Decrypt a block of ciphertext read in from a stream with the given cipher and context |
static void |
decrypt(byte[] dest,
int destOffset,
InputStream in,
int destSize,
Encryption.Context context,
byte[] iv)
Decrypt a block of ciphertext from a stream given a context and IV |
static void |
decrypt(OutputStream out,
InputStream in,
int outLen,
Decryptor d)
Decrypt a stream of ciphertext given a decryptor |
static void |
decrypt(OutputStream out,
InputStream in,
int outLen,
Encryption.Context context,
byte[] iv)
Decrypt a stream of ciphertext given a context and IV |
static void |
decryptWithSubjectKey(OutputStream out,
InputStream in,
int outLen,
String subject,
org.apache.hadoop.conf.Configuration conf,
Cipher cipher,
byte[] iv)
Decrypts a block of ciphertext with the symmetric key resolved for the given subject |
static void |
encrypt(OutputStream out,
byte[] src,
int offset,
int length,
Encryption.Context context,
byte[] iv)
Encrypt a block of plaintext |
static void |
encrypt(OutputStream out,
byte[] src,
int offset,
int length,
Encryptor e)
Encrypt a block of plaintext |
static void |
encrypt(OutputStream out,
InputStream in,
Encryption.Context context,
byte[] iv)
Encrypt a stream of plaintext given a context and IV |
static void |
encrypt(OutputStream out,
InputStream in,
Encryptor e)
Encrypt a stream of plaintext given an encryptor |
static void |
encryptWithSubjectKey(OutputStream out,
InputStream in,
String subject,
org.apache.hadoop.conf.Configuration conf,
Cipher cipher,
byte[] iv)
Encrypts a block of plaintext with the symmetric key resolved for the given subject |
static Cipher |
getCipher(org.apache.hadoop.conf.Configuration conf,
String name)
Get an cipher given a name |
static CipherProvider |
getCipherProvider(org.apache.hadoop.conf.Configuration conf)
|
static KeyProvider |
getKeyProvider(org.apache.hadoop.conf.Configuration conf)
|
static Key |
getSecretKeyForSubject(String subject,
org.apache.hadoop.conf.Configuration conf)
Resolves a key for the given subject |
static String[] |
getSupportedCiphers()
Get names of supported encryption algorithms |
static String[] |
getSupportedCiphers(org.apache.hadoop.conf.Configuration conf)
Get names of supported encryption algorithms |
static byte[] |
hash128(byte[]... args)
Return the MD5 digest of the concatenation of the supplied arguments. |
static byte[] |
hash128(String... args)
Return the MD5 digest of the concatenation of the supplied arguments. |
static byte[] |
hash256(byte[]... args)
Return the SHA-256 digest of the concatenation of the supplied arguments. |
static byte[] |
hash256(String... args)
Return the SHA-256 digest of the concatenation of the supplied arguments. |
static void |
incrementIv(byte[] iv)
|
static void |
incrementIv(byte[] iv,
int v)
|
static Encryption.Context |
newContext()
|
static Encryption.Context |
newContext(org.apache.hadoop.conf.Configuration conf)
|
static byte[] |
pbkdf128(byte[]... args)
Return a 128 bit key derived from the concatenation of the supplied arguments using PBKDF2WithHmacSHA1 at 10,000 iterations. |
static byte[] |
pbkdf128(String... args)
Return a 128 bit key derived from the concatenation of the supplied arguments using PBKDF2WithHmacSHA1 at 10,000 iterations. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
public static Encryption.Context newContext()
public static Encryption.Context newContext(org.apache.hadoop.conf.Configuration conf)
public static Cipher getCipher(org.apache.hadoop.conf.Configuration conf,
String name)
name - the cipher name
public static String[] getSupportedCiphers()
public static String[] getSupportedCiphers(org.apache.hadoop.conf.Configuration conf)
public static byte[] hash128(String... args)
public static byte[] hash128(byte[]... args)
public static byte[] hash256(String... args)
public static byte[] hash256(byte[]... args)
public static byte[] pbkdf128(String... args)
public static byte[] pbkdf128(byte[]... args)
public static void encrypt(OutputStream out,
byte[] src,
int offset,
int length,
Encryptor e)
throws IOException
The encryptor's state will be finalized. It should be reinitialized or returned to the pool.
out - ciphertextsrc - plaintextoffset - length - e -
IOException
public static void encrypt(OutputStream out,
byte[] src,
int offset,
int length,
Encryption.Context context,
byte[] iv)
throws IOException
out - ciphertextsrc - plaintextoffset - length - context - iv -
IOException
public static void encrypt(OutputStream out,
InputStream in,
Encryptor e)
throws IOException
The encryptor's state will be finalized. It should be reinitialized or returned to the pool.
out - ciphertextin - plaintexte -
IOException
public static void encrypt(OutputStream out,
InputStream in,
Encryption.Context context,
byte[] iv)
throws IOException
out - ciphertextin - plaintetcontext - iv -
IOException
public static void decrypt(byte[] dest,
int destOffset,
InputStream in,
int destSize,
Decryptor d)
throws IOException
The decryptor's state will be finalized. It should be reinitialized or returned to the pool.
dest - destOffset - in - destSize - d -
IOException
public static void decrypt(byte[] dest,
int destOffset,
InputStream in,
int destSize,
Encryption.Context context,
byte[] iv)
throws IOException
dest - destOffset - in - destSize - context - iv -
IOException
public static void decrypt(OutputStream out,
InputStream in,
int outLen,
Decryptor d)
throws IOException
out - in - outLen - d -
IOException
public static void decrypt(OutputStream out,
InputStream in,
int outLen,
Encryption.Context context,
byte[] iv)
throws IOException
out - in - outLen - context - iv -
IOException
public static Key getSecretKeyForSubject(String subject,
org.apache.hadoop.conf.Configuration conf)
throws IOException
subject - conf -
IOException - if the key is not found
public static void encryptWithSubjectKey(OutputStream out,
InputStream in,
String subject,
org.apache.hadoop.conf.Configuration conf,
Cipher cipher,
byte[] iv)
throws IOException
out - ciphertextin - plaintextconf - configurationcipher - the encryption algorithmiv - the initialization vector, can be null
IOException
public static void decryptWithSubjectKey(OutputStream out,
InputStream in,
int outLen,
String subject,
org.apache.hadoop.conf.Configuration conf,
Cipher cipher,
byte[] iv)
throws IOException
out - plaintextin - ciphertextoutLen - the expected plaintext lengthsubject - the subject's key aliasconf - configurationcipher - the encryption algorithmiv - the initialization vector, can be null
IOExceptionpublic static CipherProvider getCipherProvider(org.apache.hadoop.conf.Configuration conf)
public static KeyProvider getKeyProvider(org.apache.hadoop.conf.Configuration conf)
public static void incrementIv(byte[] iv)
public static void incrementIv(byte[] iv,
int v)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||