Uses of Class
org.apache.hadoop.hbase.io.crypto.Encryption.Context

Packages that use Encryption.Context
org.apache.hadoop.hbase.io.crypto   
org.apache.hadoop.hbase.io.hfile   
 

Uses of Encryption.Context in org.apache.hadoop.hbase.io.crypto
 

Fields in org.apache.hadoop.hbase.io.crypto declared as Encryption.Context
static Encryption.Context Encryption.Context.NONE
          The null crypto context
 

Methods in org.apache.hadoop.hbase.io.crypto that return Encryption.Context
static Encryption.Context Encryption.newContext()
           
static Encryption.Context Encryption.newContext(org.apache.hadoop.conf.Configuration conf)
           
 Encryption.Context Encryption.Context.setCipher(Cipher cipher)
           
 Encryption.Context Encryption.Context.setKey(byte[] key)
           
 Encryption.Context Encryption.Context.setKey(Key key)
           
 

Methods in org.apache.hadoop.hbase.io.crypto with parameters of type Encryption.Context
static void Encryption.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 Encryption.decrypt(OutputStream out, InputStream in, int outLen, Encryption.Context context, byte[] iv)
          Decrypt a stream of ciphertext given a context and IV
static void Encryption.encrypt(OutputStream out, byte[] src, int offset, int length, Encryption.Context context, byte[] iv)
          Encrypt a block of plaintext
static void Encryption.encrypt(OutputStream out, InputStream in, Encryption.Context context, byte[] iv)
          Encrypt a stream of plaintext given a context and IV
 

Uses of Encryption.Context in org.apache.hadoop.hbase.io.hfile
 

Methods in org.apache.hadoop.hbase.io.hfile that return Encryption.Context
 Encryption.Context HFileContext.getEncryptionContext()
           
 

Methods in org.apache.hadoop.hbase.io.hfile with parameters of type Encryption.Context
 void HFileContext.setEncryptionContext(Encryption.Context cryptoContext)
           
 HFileContextBuilder HFileContextBuilder.withEncryptionContext(Encryption.Context cryptoContext)
           
 

Constructors in org.apache.hadoop.hbase.io.hfile with parameters of type Encryption.Context
HFileContext(boolean useHBaseChecksum, boolean includesMvcc, boolean includesTags, Compression.Algorithm compressAlgo, boolean compressTags, ChecksumType checksumType, int bytesPerChecksum, int blockSize, DataBlockEncoding encoding, Encryption.Context cryptoContext)
           
 



Copyright © 2007-2015 The Apache Software Foundation. All Rights Reserved.