Class NoCryptoService
java.lang.Object
org.apache.accumulo.core.spi.crypto.NoCryptoService
- All Implemented Interfaces:
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 -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetFileDecrypter(CryptoEnvironment environment) Initialize the FileDecrypter for the environment and return.getFileEncrypter(CryptoEnvironment environment) Initialize the FileEncrypter for the environment and return.voidInitialize CryptoService.
-
Field Details
-
VERSION
- See Also:
-
-
Constructor Details
-
NoCryptoService
public NoCryptoService()
-
-
Method Details
-
init
Description copied from interface:CryptoServiceInitialize CryptoService. This should only be called once.- Specified by:
initin interfaceCryptoService- Throws:
CryptoService.CryptoException
-
getFileEncrypter
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 is not expected be called by multiple threads.- Specified by:
getFileEncrypterin interfaceCryptoService
-
getFileDecrypter
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
-