Class NoCryptoService
- java.lang.Object
-
- org.apache.accumulo.core.cryptoImpl.NoCryptoService
-
- All Implemented Interfaces:
CryptoService
public class NoCryptoService extends Object implements CryptoService
The default encryption strategy which does nothing.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.accumulo.core.spi.crypto.CryptoService
CryptoService.CryptoException
-
-
Constructor Summary
Constructors Constructor Description NoCryptoService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FileDecryptergetFileDecrypter(CryptoEnvironment environment)Initialize the FileDecrypter for the environment and return.FileEncryptergetFileEncrypter(CryptoEnvironment environment)Initialize the FileEncrypter for the environment and return.voidinit(Map<String,String> conf)Initialize CryptoService.
-
-
-
Field Detail
-
VERSION
public static final String VERSION
- See Also:
- Constant Field Values
-
-
Method Detail
-
init
public void init(Map<String,String> conf) throws CryptoService.CryptoException
Description copied from interface:CryptoServiceInitialize CryptoService. This is called once at Tablet Server startup.- Specified by:
initin interfaceCryptoService- Throws:
CryptoService.CryptoException
-
getFileEncrypter
public FileEncrypter getFileEncrypter(CryptoEnvironment environment)
Description copied from interface:CryptoServiceInitialize the FileEncrypter for the environment and return. This will get called once per R-File or Write Ahead Log. FileEncrypter implementation must be thread safe.- Specified by:
getFileEncrypterin interfaceCryptoService
-
getFileDecrypter
public FileDecrypter getFileDecrypter(CryptoEnvironment environment)
Description copied from interface:CryptoServiceInitialize the FileDecrypter for the environment and return. This will get called once per R-File or Write Ahead Log. FileDecrypter implementation must be thread safe.- Specified by:
getFileDecrypterin interfaceCryptoService
-
-