MCPcopy Create free account
hub / github.com/apache/impala / EncryptionAlgorithm

Enum EncryptionAlgorithm

be/src/kudu/util/env_posix.cc:242–250  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

240};
241
242enum class EncryptionAlgorithm {
243 AES128CTR = 0x00,
244 AES192CTR = 0x01,
245 AES256CTR = 0x02,
246 // ECB mode below only used to encrypt keys.
247 AES128ECB = 0xFD,
248 AES192ECB = 0XFE,
249 AES256ECB = 0xFF,
250};
251
252// The encryption header is stored on disk as follows:
253//

Callers 1

ReadEncryptionHeaderFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected