@InterfaceAudience.Private @InterfaceStability.Evolving public class EncryptionUtil extends Object
Constructor and Description |
---|
EncryptionUtil() |
Modifier and Type | Method and Description |
---|---|
static Key |
unwrapKey(org.apache.hadoop.conf.Configuration conf,
String subject,
byte[] value)
Unwrap a key by decrypting it with the secret key of the given subject.
|
static Key |
unwrapWALKey(org.apache.hadoop.conf.Configuration conf,
String subject,
byte[] value)
Unwrap a wal key by decrypting it with the secret key of the given subject.
|
static byte[] |
wrapKey(org.apache.hadoop.conf.Configuration conf,
byte[] key,
String algorithm)
Protect a key by encrypting it with the secret key of the given subject.
|
static byte[] |
wrapKey(org.apache.hadoop.conf.Configuration conf,
String subject,
Key key)
Protect a key by encrypting it with the secret key of the given subject.
|
public static byte[] wrapKey(org.apache.hadoop.conf.Configuration conf, byte[] key, String algorithm) throws IOException
conf
- configurationkey
- the raw key bytesalgorithm
- the algorithm to use with this key materialIOException
public static byte[] wrapKey(org.apache.hadoop.conf.Configuration conf, String subject, Key key) throws IOException
conf
- configurationsubject
- subject key aliaskey
- the keyIOException
public static Key unwrapKey(org.apache.hadoop.conf.Configuration conf, String subject, byte[] value) throws IOException, KeyException
conf
- configurationsubject
- subject key aliasvalue
- the encrypted key bytesIOException
KeyException
public static Key unwrapWALKey(org.apache.hadoop.conf.Configuration conf, String subject, byte[] value) throws IOException, KeyException
conf
- configurationsubject
- subject key aliasvalue
- the encrypted key bytesIOException
- if key is not found for the subject, or if some I/O error occursKeyException
- if fail to unwrap the keyCopyright © 2007-2016 The Apache Software Foundation. All Rights Reserved.