Adding test for LowCardinality(FixedString(N)) data type for plaintext.
51 KiB
SRS-008 ClickHouse AES Encryption Functions
Software Requirements Specification
Table of Contents
- 1 Revision History
- 2 Introduction
- 3 Terminology
- 4 Requirements
- 4.1 Generic
- 4.1.1 RQ.SRS008.AES.Functions
- 4.2 Compatibility
- 4.3 Different Modes
- 4.4 Multiple Sources
- 4.5 Suppressing Sensitive Values
- 4.6 Invalid Parameters
- 4.7 Mismatched Values
- 4.8 Performance
- 4.9 Encrypt Function
- 4.9.1 RQ.SRS008.AES.Encrypt.Function
- 4.9.2 RQ.SRS008.AES.Encrypt.Function.Syntax
- 4.9.3 RQ.SRS008.AES.Encrypt.Function.NIST.TestVectors
- 4.9.4 RQ.SRS008.AES.Encrypt.Function.Parameters.PlainText
- 4.9.5 RQ.SRS008.AES.Encrypt.Function.Parameters.Key
- 4.9.6 RQ.SRS008.AES.Encrypt.Function.Parameters.Mode
- 4.9.7 RQ.SRS008.AES.Encrypt.Function.Parameters.Mode.ValuesFormat
- 4.9.8 RQ.SRS008.AES.Encrypt.Function.Parameters.Mode.Value.Invalid
- 4.9.9 RQ.SRS008.AES.Encrypt.Function.Parameters.Mode.Values
- 4.9.10 RQ.SRS008.AES.Encrypt.Function.Parameters.InitializationVector
- 4.9.11 RQ.SRS008.AES.Encrypt.Function.Parameters.AdditionalAuthenticatedData
- 4.9.12 RQ.SRS008.AES.Encrypt.Function.Parameters.ReturnValue
- 4.9.13 RQ.SRS008.AES.Encrypt.Function.Key.Length.InvalidLengthError
- 4.9.14 RQ.SRS008.AES.Encrypt.Function.InitializationVector.Length.InvalidLengthError
- 4.9.15 RQ.SRS008.AES.Encrypt.Function.InitializationVector.NotValidForMode
- 4.9.16 RQ.SRS008.AES.Encrypt.Function.AdditionalAuthenticationData.NotValidForMode
- 4.9.17 RQ.SRS008.AES.Encrypt.Function.AdditionalAuthenticationData.Length
- 4.9.18 RQ.SRS008.AES.Encrypt.Function.NonGCMMode.KeyAndInitializationVector.Length
- 4.9.19 RQ.SRS008.AES.Encrypt.Function.GCMMode.KeyAndInitializationVector.Length
- 4.10 Decrypt Function
- 4.10.1 RQ.SRS008.AES.Decrypt.Function
- 4.10.2 RQ.SRS008.AES.Decrypt.Function.Syntax
- 4.10.3 RQ.SRS008.AES.Decrypt.Function.Parameters.CipherText
- 4.10.4 RQ.SRS008.AES.Decrypt.Function.Parameters.Key
- 4.10.5 RQ.SRS008.AES.Decrypt.Function.Parameters.Mode
- 4.10.6 RQ.SRS008.AES.Decrypt.Function.Parameters.Mode.ValuesFormat
- 4.10.7 RQ.SRS008.AES.Decrypt.Function.Parameters.Mode.Value.Invalid
- 4.10.8 RQ.SRS008.AES.Decrypt.Function.Parameters.Mode.Values
- 4.10.9 RQ.SRS008.AES.Decrypt.Function.Parameters.InitializationVector
- 4.10.10 RQ.SRS008.AES.Decrypt.Function.Parameters.AdditionalAuthenticatedData
- 4.10.11 RQ.SRS008.AES.Decrypt.Function.Parameters.ReturnValue
- 4.10.12 RQ.SRS008.AES.Decrypt.Function.Key.Length.InvalidLengthError
- 4.10.13 RQ.SRS008.AES.Decrypt.Function.InitializationVector.Length.InvalidLengthError
- 4.10.14 RQ.SRS008.AES.Decrypt.Function.InitializationVector.NotValidForMode
- 4.10.15 RQ.SRS008.AES.Decrypt.Function.AdditionalAuthenticationData.NotValidForMode
- 4.10.16 RQ.SRS008.AES.Decrypt.Function.AdditionalAuthenticationData.Length
- 4.10.17 RQ.SRS008.AES.Decrypt.Function.NonGCMMode.KeyAndInitializationVector.Length
- 4.10.18 RQ.SRS008.AES.Decrypt.Function.GCMMode.KeyAndInitializationVector.Length
- 4.11 MySQL Encrypt Function
- 4.11.1 RQ.SRS008.AES.MySQL.Encrypt.Function
- 4.11.2 RQ.SRS008.AES.MySQL.Encrypt.Function.Syntax
- 4.11.3 RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.PlainText
- 4.11.4 RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.Key
- 4.11.5 RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.Mode
- 4.11.6 RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.Mode.ValuesFormat
- 4.11.7 RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.Mode.Value.Invalid
- 4.11.8 RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.Mode.Values
- 4.11.9 RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.Mode.Values.GCM.Error
- 4.11.10 RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.Mode.Values.CTR.Error
- 4.11.11 RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.InitializationVector
- 4.11.12 RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.ReturnValue
- 4.11.13 RQ.SRS008.AES.MySQL.Encrypt.Function.Key.Length.TooShortError
- 4.11.14 RQ.SRS008.AES.MySQL.Encrypt.Function.Key.Length.TooLong
- 4.11.15 RQ.SRS008.AES.MySQL.Encrypt.Function.InitializationVector.Length.TooShortError
- 4.11.16 RQ.SRS008.AES.MySQL.Encrypt.Function.InitializationVector.Length.TooLong
- 4.11.17 RQ.SRS008.AES.MySQL.Encrypt.Function.InitializationVector.NotValidForMode
- 4.11.18 RQ.SRS008.AES.MySQL.Encrypt.Function.Mode.KeyAndInitializationVector.Length
- 4.12 MySQL Decrypt Function
- 4.12.1 RQ.SRS008.AES.MySQL.Decrypt.Function
- 4.12.2 RQ.SRS008.AES.MySQL.Decrypt.Function.Syntax
- 4.12.3 RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.CipherText
- 4.12.4 RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.Key
- 4.12.5 RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.Mode
- 4.12.6 RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.Mode.ValuesFormat
- 4.12.7 RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.Mode.Value.Invalid
- 4.12.8 RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.Mode.Values
- 4.12.9 RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.Mode.Values.GCM.Error
- 4.12.10 RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.Mode.Values.CTR.Error
- 4.12.11 RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.InitializationVector
- 4.12.12 RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.ReturnValue
- 4.12.13 RQ.SRS008.AES.MySQL.Decrypt.Function.Key.Length.TooShortError
- 4.12.14 RQ.SRS008.AES.MySQL.Decrypt.Function.Key.Length.TooLong
- 4.12.15 RQ.SRS008.AES.MySQL.Decrypt.Function.InitializationVector.Length.TooShortError
- 4.12.16 RQ.SRS008.AES.MySQL.Decrypt.Function.InitializationVector.Length.TooLong
- 4.12.17 RQ.SRS008.AES.MySQL.Decrypt.Function.InitializationVector.NotValidForMode
- 4.12.18 RQ.SRS008.AES.MySQL.Decrypt.Function.Mode.KeyAndInitializationVector.Length
- 4.1 Generic
- 5 References
Revision History
This document is stored in an electronic form using Git source control management software hosted in a GitHub Repository. All the updates are tracked using the Revision History.
Introduction
Users need an ability to encrypt and decrypt column data with tenant specific keys. Use cases include protection of sensitive column values and GDPR right to forget policies. The implementation will support capabilities of the MySQL aes_encrypt and MySQL aes_decrypt functions which encrypt and decrypt values using the AES (Advanced Encryption Standard) algorithm. This functionality will enable encryption and decryption of data accessed on remote MySQL servers via MySQL Dictionary or MySQL Database Engine, MySQL Table Engine, or MySQL Table Function.
Terminology
AES
Advanced Encryption Standard (AES)
AEAD
Authenticated Encryption with Associated Data
Requirements
Generic
RQ.SRS008.AES.Functions
version: 1.0
ClickHouse SHALL support AES encryption functions to encrypt and decrypt data.
Compatibility
RQ.SRS008.AES.Functions.Compatibility.MySQL
version: 1.0
ClickHouse SHALL support AES encryption functions compatible with MySQL 5.7.
RQ.SRS008.AES.Functions.Compatibility.Dictionaries
version: 1.0
ClickHouse SHALL support encryption and decryption of data accessed on remote MySQL servers using MySQL Dictionary.
RQ.SRS008.AES.Functions.Compatibility.Engine.Database.MySQL
version: 1.0
ClickHouse SHALL support encryption and decryption of data accessed using MySQL Database Engine,
RQ.SRS008.AES.Functions.Compatibility.Engine.Table.MySQL
version: 1.0
ClickHouse SHALL support encryption and decryption of data accessed using MySQL Table Engine.
RQ.SRS008.AES.Functions.Compatibility.TableFunction.MySQL
version: 1.0
ClickHouse SHALL support encryption and decryption of data accessed using MySQL Table Function.
Different Modes
RQ.SRS008.AES.Functions.DifferentModes
version: 1.0
ClickHouse SHALL allow different modes to be supported in a single SQL statement using explicit function parameters.
Multiple Sources
RQ.SRS008.AES.Functions.DataFromMultipleSources
version: 1.0
ClickHouse SHALL support handling encryption and decryption of data from multiple sources
in the SELECT
statement, including ClickHouse MergeTree table as well as MySQL Dictionary,
MySQL Database Engine, MySQL Table Engine, and MySQL Table Function
with possibly different encryption schemes.
Suppressing Sensitive Values
RQ.SRS008.AES.Functions.SuppressOutputOfSensitiveValues
version: 1.0
ClickHouse SHALL suppress output of AES string
and key
parameters to the system log,
error log, and query_log
table to prevent leakage of sensitive values.
Invalid Parameters
RQ.SRS008.AES.Functions.InvalidParameters
version: 1.0
ClickHouse SHALL return an error when parameters are invalid.
Mismatched Values
RQ.SRS008.AES.Functions.Mismatched.Key
version: 1.0
ClickHouse SHALL return garbage for mismatched keys.
RQ.SRS008.AES.Functions.Mismatched.IV
version: 1.0
ClickHouse SHALL return garbage for mismatched initialization vector for the modes that use it.
RQ.SRS008.AES.Functions.Mismatched.AAD
version: 1.0
ClickHouse SHALL return garbage for mismatched additional authentication data for the modes that use it.
RQ.SRS008.AES.Functions.Mismatched.Mode
version: 1.0
ClickHouse SHALL return an error or garbage for mismatched mode.
Performance
RQ.SRS008.AES.Functions.Check.Performance
version: 1.0
Performance of AES encryption functions SHALL be measured.
RQ.SRS008.AES.Function.Check.Performance.BestCase
version: 1.0
Performance of AES encryption functions SHALL be checked for the best case scenario where there is one key, one initialization vector, and one large stream of data.
RQ.SRS008.AES.Function.Check.Performance.WorstCase
version: 1.0
Performance of AES encryption functions SHALL be checked for the worst case
where there are N
keys, N
initialization vectors and N
very small streams of data.
RQ.SRS008.AES.Functions.Check.Compression
version: 1.0
Effect of AES encryption on column compression SHALL be measured.
RQ.SRS008.AES.Functions.Check.Compression.LowCardinality
version: 1.0
Effect of AES encryption on the compression of a column with LowCardinality data type SHALL be measured.
Encrypt Function
RQ.SRS008.AES.Encrypt.Function
version: 1.0
ClickHouse SHALL support encrypt
function to encrypt data using AES.
RQ.SRS008.AES.Encrypt.Function.Syntax
version: 1.0
ClickHouse SHALL support the following syntax for the encrypt
function
encrypt(mode, plaintext, key, [iv, aad])
RQ.SRS008.AES.Encrypt.Function.NIST.TestVectors
version: 1.0
ClickHouse encrypt
function output SHALL produce output that matches NIST test vectors.
RQ.SRS008.AES.Encrypt.Function.Parameters.PlainText
version: 2.0
ClickHouse SHALL support plaintext
with String
, FixedString
, Nullable(String)
,
Nullable(FixedString)
, LowCardinality(String)
, or LowCardinality(FixedString(N))
data types as
the second parameter to the encrypt
function that SHALL specify the data to be encrypted.
RQ.SRS008.AES.Encrypt.Function.Parameters.Key
version: 1.0
ClickHouse SHALL support key
with String
or FixedString
data types
as the parameter to the encrypt
function that SHALL specify the encryption key.
RQ.SRS008.AES.Encrypt.Function.Parameters.Mode
version: 1.0
ClickHouse SHALL support mode
with String
or FixedString
data types as the first parameter
to the encrypt
function that SHALL specify encryption key length and block encryption mode.
RQ.SRS008.AES.Encrypt.Function.Parameters.Mode.ValuesFormat
version: 1.0
ClickHouse SHALL support values of the form aes-[key length]-[mode]
for the mode
parameter
of the encrypt
function where
the key_length
SHALL specifies the length of the key and SHALL accept
128
, 192
, or 256
as the values and the mode
SHALL specify the block encryption
mode and SHALL accept ECB, CBC, CFB128, or OFB as well as
CTR and GCM as the values. For example, aes-256-ofb
.
RQ.SRS008.AES.Encrypt.Function.Parameters.Mode.Value.Invalid
version: 1.0
ClickHouse SHALL return an error if the specified value for the mode
parameter of the encrypt
function is not valid with the exception where such a mode is supported by the underlying
OpenSSL implementation.
RQ.SRS008.AES.Encrypt.Function.Parameters.Mode.Values
version: 1.0
ClickHouse SHALL support the following AES block encryption modes as the value for the mode
parameter
of the encrypt
function:
aes-128-ecb
that SHALL use ECB block mode encryption with 128 bit keyaes-192-ecb
that SHALL use ECB block mode encryption with 192 bit keyaes-256-ecb
that SHALL use ECB block mode encryption with 256 bit keyaes-128-cbc
that SHALL use CBC block mode encryption with 128 bit keyaes-192-cbc
that SHALL use CBC block mode encryption with 192 bit keyaes-192-cbc
that SHALL use CBC block mode encryption with 256 bit keyaes-128-cfb128
that SHALL use CFB128 block mode encryption with 128 bit keyaes-192-cfb128
that SHALL use CFB128 block mode encryption with 192 bit keyaes-256-cfb128
that SHALL use CFB128 block mode encryption with 256 bit keyaes-128-ofb
that SHALL use OFB block mode encryption with 128 bit keyaes-192-ofb
that SHALL use OFB block mode encryption with 192 bit keyaes-256-ofb
that SHALL use OFB block mode encryption with 256 bit keyaes-128-gcm
that SHALL use GCM block mode encryption with 128 bit key and AEAD 16-byte tag is appended to the resulting ciphertext according to the RFC5116aes-192-gcm
that SHALL use GCM block mode encryption with 192 bit key and AEAD 16-byte tag is appended to the resulting ciphertext according to the RFC5116aes-256-gcm
that SHALL use GCM block mode encryption with 256 bit key and AEAD 16-byte tag is appended to the resulting ciphertext according to the RFC5116aes-128-ctr
that SHALL use CTR block mode encryption with 128 bit keyaes-192-ctr
that SHALL use CTR block mode encryption with 192 bit keyaes-256-ctr
that SHALL use CTR block mode encryption with 256 bit key
RQ.SRS008.AES.Encrypt.Function.Parameters.InitializationVector
version: 1.0
ClickHouse SHALL support iv
with String
or FixedString
data types as the optional fourth
parameter to the encrypt
function that SHALL specify the initialization vector for block modes that require
it.
RQ.SRS008.AES.Encrypt.Function.Parameters.AdditionalAuthenticatedData
version: 1.0
ClickHouse SHALL support aad
with String
or FixedString
data types as the optional fifth
parameter to the encrypt
function that SHALL specify the additional authenticated data
for block modes that require it.
RQ.SRS008.AES.Encrypt.Function.Parameters.ReturnValue
version: 1.0
ClickHouse SHALL return the encrypted value of the data
using String
data type as the result of encrypt
function.
RQ.SRS008.AES.Encrypt.Function.Key.Length.InvalidLengthError
version: 1.0
ClickHouse SHALL return an error if the key
length is not exact for the encrypt
function for a given block mode.
RQ.SRS008.AES.Encrypt.Function.InitializationVector.Length.InvalidLengthError
version: 1.0
ClickHouse SHALL return an error if the iv
length is specified and not of the exact size for the encrypt
function for a given block mode.
RQ.SRS008.AES.Encrypt.Function.InitializationVector.NotValidForMode
version: 1.0
ClickHouse SHALL return an error if the iv
is specified for the encrypt
function for a mode that does not need it.
RQ.SRS008.AES.Encrypt.Function.AdditionalAuthenticationData.NotValidForMode
version: 1.0
ClickHouse SHALL return an error if the aad
is specified for the encrypt
function for a mode that does not need it.
RQ.SRS008.AES.Encrypt.Function.AdditionalAuthenticationData.Length
version: 1.0
ClickHouse SHALL not limit the size of the aad
parameter passed to the encrypt
function.
RQ.SRS008.AES.Encrypt.Function.NonGCMMode.KeyAndInitializationVector.Length
version: 1.0
ClickHouse SHALL return an error when the encrypt
function is called with the following parameter values
when using non-GCM modes
aes-128-ecb
mode andkey
is not 16 bytes oriv
oraad
is specifiedaes-192-ecb
mode andkey
is not 24 bytes oriv
oraad
is specifiedaes-256-ecb
mode andkey
is not 32 bytes oriv
oraad
is specifiedaes-128-cbc
mode andkey
is not 16 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-192-cbc
mode andkey
is not 24 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-256-cbc
mode andkey
is not 32 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-128-cfb1
mode andkey
is not 16 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-192-cfb1
mode andkey
is not 24 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-256-cfb1
mode andkey
is not 32 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-128-cfb8
mode andkey
is not 16 bytes and if specifiediv
is not 16 bytesaes-192-cfb8
mode andkey
is not 24 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-256-cfb8
mode andkey
is not 32 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-128-cfb128
mode andkey
is not 16 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-192-cfb128
mode andkey
is not 24 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-256-cfb128
mode andkey
is not 32 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-128-ofb
mode andkey
is not 16 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-192-ofb
mode andkey
is not 24 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-256-ofb
mode andkey
is not 32 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-128-ctr
mode andkey
is not 16 bytes or if specifiediv
is not 16 bytesaes-192-ctr
mode andkey
is not 24 bytes or if specifiediv
is not 16 bytesaes-256-ctr
mode andkey
is not 32 bytes or if specifiediv
is not 16 bytes
RQ.SRS008.AES.Encrypt.Function.GCMMode.KeyAndInitializationVector.Length
version: 1.0
ClickHouse SHALL return an error when the encrypt
function is called with the following parameter values
when using GCM modes
aes-128-gcm
mode andkey
is not 16 bytes oriv
is not specifiedaes-192-gcm
mode andkey
is not 24 bytes oriv
is not specifiedaes-256-gcm
mode andkey
is not 32 bytes oriv
is not specified
Decrypt Function
RQ.SRS008.AES.Decrypt.Function
version: 1.0
ClickHouse SHALL support decrypt
function to decrypt data using AES.
RQ.SRS008.AES.Decrypt.Function.Syntax
version: 1.0
ClickHouse SHALL support the following syntax for the decrypt
function
decrypt(mode, ciphertext, key, [iv, aad])
RQ.SRS008.AES.Decrypt.Function.Parameters.CipherText
version: 1.0
ClickHouse SHALL support ciphertext
accepting FixedString
or String
data types as
the second parameter to the decrypt
function that SHALL specify the data to be decrypted.
RQ.SRS008.AES.Decrypt.Function.Parameters.Key
version: 1.0
ClickHouse SHALL support key
with String
or FixedString
data types
as the third parameter to the decrypt
function that SHALL specify the encryption key.
RQ.SRS008.AES.Decrypt.Function.Parameters.Mode
version: 1.0
ClickHouse SHALL support mode
with String
or FixedString
data types as the first parameter
to the decrypt
function that SHALL specify encryption key length and block encryption mode.
RQ.SRS008.AES.Decrypt.Function.Parameters.Mode.ValuesFormat
version: 1.0
ClickHouse SHALL support values of the form aes-[key length]-[mode]
for the mode
parameter
of the decrypt
function where
the key_length
SHALL specifies the length of the key and SHALL accept
128
, 192
, or 256
as the values and the mode
SHALL specify the block encryption
mode and SHALL accept ECB, CBC, CFB128, or OFB as well as
CTR and GCM as the values. For example, aes-256-ofb
.
RQ.SRS008.AES.Decrypt.Function.Parameters.Mode.Value.Invalid
version: 1.0
ClickHouse SHALL return an error if the specified value for the mode
parameter of the decrypt
function is not valid with the exception where such a mode is supported by the underlying
OpenSSL implementation.
RQ.SRS008.AES.Decrypt.Function.Parameters.Mode.Values
version: 1.0
ClickHouse SHALL support the following AES block encryption modes as the value for the mode
parameter
of the decrypt
function:
aes-128-ecb
that SHALL use ECB block mode encryption with 128 bit keyaes-192-ecb
that SHALL use ECB block mode encryption with 192 bit keyaes-256-ecb
that SHALL use ECB block mode encryption with 256 bit keyaes-128-cbc
that SHALL use CBC block mode encryption with 128 bit keyaes-192-cbc
that SHALL use CBC block mode encryption with 192 bit keyaes-192-cbc
that SHALL use CBC block mode encryption with 256 bit keyaes-128-cfb128
that SHALL use CFB128 block mode encryption with 128 bit keyaes-192-cfb128
that SHALL use CFB128 block mode encryption with 192 bit keyaes-256-cfb128
that SHALL use CFB128 block mode encryption with 256 bit keyaes-128-ofb
that SHALL use OFB block mode encryption with 128 bit keyaes-192-ofb
that SHALL use OFB block mode encryption with 192 bit keyaes-256-ofb
that SHALL use OFB block mode encryption with 256 bit keyaes-128-gcm
that SHALL use GCM block mode encryption with 128 bit key and AEAD 16-byte tag is expected present at the end of the ciphertext according to the RFC5116aes-192-gcm
that SHALL use GCM block mode encryption with 192 bit key and AEAD 16-byte tag is expected present at the end of the ciphertext according to the RFC5116aes-256-gcm
that SHALL use GCM block mode encryption with 256 bit key and AEAD 16-byte tag is expected present at the end of the ciphertext according to the RFC5116aes-128-ctr
that SHALL use CTR block mode encryption with 128 bit keyaes-192-ctr
that SHALL use CTR block mode encryption with 192 bit keyaes-256-ctr
that SHALL use CTR block mode encryption with 256 bit key
RQ.SRS008.AES.Decrypt.Function.Parameters.InitializationVector
version: 1.0
ClickHouse SHALL support iv
with String
or FixedString
data types as the optional fourth
parameter to the decrypt
function that SHALL specify the initialization vector for block modes that require
it.
RQ.SRS008.AES.Decrypt.Function.Parameters.AdditionalAuthenticatedData
version: 1.0
ClickHouse SHALL support aad
with String
or FixedString
data types as the optional fifth
parameter to the decrypt
function that SHALL specify the additional authenticated data
for block modes that require it.
RQ.SRS008.AES.Decrypt.Function.Parameters.ReturnValue
version: 1.0
ClickHouse SHALL return the decrypted value of the data
using String
data type as the result of decrypt
function.
RQ.SRS008.AES.Decrypt.Function.Key.Length.InvalidLengthError
version: 1.0
ClickHouse SHALL return an error if the key
length is not exact for the decrypt
function for a given block mode.
RQ.SRS008.AES.Decrypt.Function.InitializationVector.Length.InvalidLengthError
version: 1.0
ClickHouse SHALL return an error if the iv
is specified and the length is not exact for the decrypt
function for a given block mode.
RQ.SRS008.AES.Decrypt.Function.InitializationVector.NotValidForMode
version: 1.0
ClickHouse SHALL return an error if the iv
is specified for the decrypt
function
for a mode that does not need it.
RQ.SRS008.AES.Decrypt.Function.AdditionalAuthenticationData.NotValidForMode
version: 1.0
ClickHouse SHALL return an error if the aad
is specified for the decrypt
function
for a mode that does not need it.
RQ.SRS008.AES.Decrypt.Function.AdditionalAuthenticationData.Length
version: 1.0
ClickHouse SHALL not limit the size of the aad
parameter passed to the decrypt
function.
RQ.SRS008.AES.Decrypt.Function.NonGCMMode.KeyAndInitializationVector.Length
version: 1.0
ClickHouse SHALL return an error when the decrypt
function is called with the following parameter values
when using non-GCM modes
aes-128-ecb
mode andkey
is not 16 bytes oriv
oraad
is specifiedaes-192-ecb
mode andkey
is not 24 bytes oriv
oraad
is specifiedaes-256-ecb
mode andkey
is not 32 bytes oriv
oraad
is specifiedaes-128-cbc
mode andkey
is not 16 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-192-cbc
mode andkey
is not 24 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-256-cbc
mode andkey
is not 32 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-128-cfb1
mode andkey
is not 16 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-192-cfb1
mode andkey
is not 24 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-256-cfb1
mode andkey
is not 32 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-128-cfb8
mode andkey
is not 16 bytes and if specifiediv
is not 16 bytesaes-192-cfb8
mode andkey
is not 24 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-256-cfb8
mode andkey
is not 32 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-128-cfb128
mode andkey
is not 16 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-192-cfb128
mode andkey
is not 24 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-256-cfb128
mode andkey
is not 32 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-128-ofb
mode andkey
is not 16 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-192-ofb
mode andkey
is not 24 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-256-ofb
mode andkey
is not 32 bytes or if specifiediv
is not 16 bytes oraad
is specifiedaes-128-ctr
mode andkey
is not 16 bytes or if specifiediv
is not 16 bytesaes-192-ctr
mode andkey
is not 24 bytes or if specifiediv
is not 16 bytesaes-256-ctr
mode andkey
is not 32 bytes or if specifiediv
is not 16 bytes
RQ.SRS008.AES.Decrypt.Function.GCMMode.KeyAndInitializationVector.Length
version: 1.0
ClickHouse SHALL return an error when the decrypt
function is called with the following parameter values
when using GCM modes
aes-128-gcm
mode andkey
is not 16 bytes oriv
is not specifiedaes-192-gcm
mode andkey
is not 24 bytes oriv
is not specifiedaes-256-gcm
mode andkey
is not 32 bytes oriv
is not specified
MySQL Encrypt Function
RQ.SRS008.AES.MySQL.Encrypt.Function
version: 1.0
ClickHouse SHALL support aes_encrypt_mysql
function to encrypt data using AES.
RQ.SRS008.AES.MySQL.Encrypt.Function.Syntax
version: 1.0
ClickHouse SHALL support the following syntax for the aes_encrypt_mysql
function
aes_encrypt_mysql(mode, plaintext, key, [iv])
RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.PlainText
version: 2.0
ClickHouse SHALL support plaintext
with String
, FixedString
, Nullable(String)
,
Nullable(FixedString)
, LowCardinality(String)
, or LowCardinality(FixedString(N))
data types as
the second parameter to the aes_encrypt_mysql
function that SHALL specify the data to be encrypted.
RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.Key
version: 1.0
ClickHouse SHALL support key
with String
or FixedString
data types
as the third parameter to the aes_encrypt_mysql
function that SHALL specify the encryption key.
RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.Mode
version: 1.0
ClickHouse SHALL support mode
with String
or FixedString
data types as the first parameter
to the aes_encrypt_mysql
function that SHALL specify encryption key length and block encryption mode.
RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.Mode.ValuesFormat
version: 1.0
ClickHouse SHALL support values of the form aes-[key length]-[mode]
for the mode
parameter
of the aes_encrypt_mysql
function where
the key_length
SHALL specifies the length of the key and SHALL accept
128
, 192
, or 256
as the values and the mode
SHALL specify the block encryption
mode and SHALL accept ECB, CBC, CFB128, or OFB. For example, aes-256-ofb
.
RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.Mode.Value.Invalid
version: 1.0
ClickHouse SHALL return an error if the specified value for the mode
parameter of the aes_encrypt_mysql
function is not valid with the exception where such a mode is supported by the underlying
OpenSSL implementation.
RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.Mode.Values
version: 1.0
ClickHouse SHALL support the following AES block encryption modes as the value for the mode
parameter
of the aes_encrypt_mysql
function:
aes-128-ecb
that SHALL use ECB block mode encryption with 128 bit keyaes-192-ecb
that SHALL use ECB block mode encryption with 192 bit keyaes-256-ecb
that SHALL use ECB block mode encryption with 256 bit keyaes-128-cbc
that SHALL use CBC block mode encryption with 128 bit keyaes-192-cbc
that SHALL use CBC block mode encryption with 192 bit keyaes-192-cbc
that SHALL use CBC block mode encryption with 256 bit keyaes-128-cfb128
that SHALL use CFB128 block mode encryption with 128 bit keyaes-192-cfb128
that SHALL use CFB128 block mode encryption with 192 bit keyaes-256-cfb128
that SHALL use CFB128 block mode encryption with 256 bit keyaes-128-ofb
that SHALL use OFB block mode encryption with 128 bit keyaes-192-ofb
that SHALL use OFB block mode encryption with 192 bit keyaes-256-ofb
that SHALL use OFB block mode encryption with 256 bit key
RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.Mode.Values.GCM.Error
version: 1.0
ClickHouse SHALL return an error if any of the following GCM modes are specified as the value
for the mode
parameter of the aes_encrypt_mysql
function
aes-128-gcm
aes-192-gcm
aes-256-gcm
RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.Mode.Values.CTR.Error
version: 1.0
ClickHouse SHALL return an error if any of the following CTR modes are specified as the value
for the mode
parameter of the aes_encrypt_mysql
function
aes-128-ctr
aes-192-ctr
aes-256-ctr
RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.InitializationVector
version: 1.0
ClickHouse SHALL support iv
with String
or FixedString
data types as the optional fourth
parameter to the aes_encrypt_mysql
function that SHALL specify the initialization vector for block modes that require
it.
RQ.SRS008.AES.MySQL.Encrypt.Function.Parameters.ReturnValue
version: 1.0
ClickHouse SHALL return the encrypted value of the data
using String
data type as the result of aes_encrypt_mysql
function.
RQ.SRS008.AES.MySQL.Encrypt.Function.Key.Length.TooShortError
version: 1.0
ClickHouse SHALL return an error if the key
length is less than the minimum for the aes_encrypt_mysql
function for a given block mode.
RQ.SRS008.AES.MySQL.Encrypt.Function.Key.Length.TooLong
version: 1.0
ClickHouse SHALL use folding algorithm specified below if the key
length is longer than required
for the aes_encrypt_mysql
function for a given block mode.
def fold_key(key, cipher_key_size):
key = list(key) if not isinstance(key, (list, tuple)) else key
folded_key = key[:cipher_key_size]
for i in range(cipher_key_size, len(key)):
print(i % cipher_key_size, i)
folded_key[i % cipher_key_size] ^= key[i]
return folded_key
RQ.SRS008.AES.MySQL.Encrypt.Function.InitializationVector.Length.TooShortError
version: 1.0
ClickHouse SHALL return an error if the iv
length is specified and is less than the minimum
that is required for the aes_encrypt_mysql
function for a given block mode.
RQ.SRS008.AES.MySQL.Encrypt.Function.InitializationVector.Length.TooLong
version: 1.0
ClickHouse SHALL use the first N
bytes that are required if the iv
is specified and
its length is longer than required for the aes_encrypt_mysql
function for a given block mode.
RQ.SRS008.AES.MySQL.Encrypt.Function.InitializationVector.NotValidForMode
version: 1.0
ClickHouse SHALL return an error if the iv
is specified for the aes_encrypt_mysql
function for a mode that does not need it.
RQ.SRS008.AES.MySQL.Encrypt.Function.Mode.KeyAndInitializationVector.Length
version: 1.0
ClickHouse SHALL return an error when the aes_encrypt_mysql
function is called with the following parameter values
aes-128-ecb
mode andkey
is less than 16 bytes oriv
is specifiedaes-192-ecb
mode andkey
is less than 24 bytes oriv
is specifiedaes-256-ecb
mode andkey
is less than 32 bytes oriv
is specifiedaes-128-cbc
mode andkey
is less than 16 bytes or if specifiediv
is less than 16 bytesaes-192-cbc
mode andkey
is less than 24 bytes or if specifiediv
is less than 16 bytesaes-256-cbc
mode andkey
is less than 32 bytes or if specifiediv
is less than 16 bytesaes-128-cfb1
mode andkey
is less than 16 bytes or if specifiediv
is less than 16 bytesaes-192-cfb1
mode andkey
is less than 24 bytes or if specifiediv
is less than 16 bytesaes-256-cfb1
mode andkey
is less than 32 bytes or if specifiediv
is less than 16 bytesaes-128-cfb8
mode andkey
is less than 16 bytes and if specifiediv
is less than 16 bytesaes-192-cfb8
mode andkey
is less than 24 bytes or if specifiediv
is less than 16 bytesaes-256-cfb8
mode andkey
is less than 32 bytes or if specifiediv
is less than 16 bytesaes-128-cfb128
mode andkey
is less than 16 bytes or if specifiediv
is less than 16 bytesaes-192-cfb128
mode andkey
is less than 24 bytes or if specifiediv
is less than 16 bytesaes-256-cfb128
mode andkey
is less than 32 bytes or if specifiediv
is less than 16 bytesaes-128-ofb
mode andkey
is less than 16 bytes or if specifiediv
is less than 16 bytesaes-192-ofb
mode andkey
is less than 24 bytes or if specifiediv
is less than 16 bytesaes-256-ofb
mode andkey
is less than 32 bytes or if specifiediv
is less than 16 bytes
MySQL Decrypt Function
RQ.SRS008.AES.MySQL.Decrypt.Function
version: 1.0
ClickHouse SHALL support aes_decrypt_mysql
function to decrypt data using AES.
RQ.SRS008.AES.MySQL.Decrypt.Function.Syntax
version: 1.0
ClickHouse SHALL support the following syntax for the aes_decrypt_mysql
function
aes_decrypt_mysql(mode, ciphertext, key, [iv])
RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.CipherText
version: 1.0
ClickHouse SHALL support ciphertext
accepting any data type as
the second parameter to the aes_decrypt_mysql
function that SHALL specify the data to be decrypted.
RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.Key
version: 1.0
ClickHouse SHALL support key
with String
or FixedString
data types
as the third parameter to the aes_decrypt_mysql
function that SHALL specify the encryption key.
RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.Mode
version: 1.0
ClickHouse SHALL support mode
with String
or FixedString
data types as the first parameter
to the aes_decrypt_mysql
function that SHALL specify encryption key length and block encryption mode.
RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.Mode.ValuesFormat
version: 1.0
ClickHouse SHALL support values of the form aes-[key length]-[mode]
for the mode
parameter
of the aes_decrypt_mysql
function where
the key_length
SHALL specifies the length of the key and SHALL accept
128
, 192
, or 256
as the values and the mode
SHALL specify the block encryption
mode and SHALL accept ECB, CBC, CFB128, or OFB. For example, aes-256-ofb
.
RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.Mode.Value.Invalid
version: 1.0
ClickHouse SHALL return an error if the specified value for the mode
parameter of the aes_decrypt_mysql
function is not valid with the exception where such a mode is supported by the underlying
OpenSSL implementation.
RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.Mode.Values
version: 1.0
ClickHouse SHALL support the following AES block encryption modes as the value for the mode
parameter
of the aes_decrypt_mysql
function:
aes-128-ecb
that SHALL use ECB block mode encryption with 128 bit keyaes-192-ecb
that SHALL use ECB block mode encryption with 192 bit keyaes-256-ecb
that SHALL use ECB block mode encryption with 256 bit keyaes-128-cbc
that SHALL use CBC block mode encryption with 128 bit keyaes-192-cbc
that SHALL use CBC block mode encryption with 192 bit keyaes-192-cbc
that SHALL use CBC block mode encryption with 256 bit keyaes-128-cfb128
that SHALL use CFB128 block mode encryption with 128 bit keyaes-192-cfb128
that SHALL use CFB128 block mode encryption with 192 bit keyaes-256-cfb128
that SHALL use CFB128 block mode encryption with 256 bit keyaes-128-ofb
that SHALL use OFB block mode encryption with 128 bit keyaes-192-ofb
that SHALL use OFB block mode encryption with 192 bit keyaes-256-ofb
that SHALL use OFB block mode encryption with 256 bit key
RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.Mode.Values.GCM.Error
version: 1.0
ClickHouse SHALL return an error if any of the following GCM modes are specified as the value
for the mode
parameter of the aes_decrypt_mysql
function
aes-128-gcm
aes-192-gcm
aes-256-gcm
RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.Mode.Values.CTR.Error
version: 1.0
ClickHouse SHALL return an error if any of the following CTR modes are specified as the value
for the mode
parameter of the aes_decrypt_mysql
function
aes-128-ctr
aes-192-ctr
aes-256-ctr
RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.InitializationVector
version: 1.0
ClickHouse SHALL support iv
with String
or FixedString
data types as the optional fourth
parameter to the aes_decrypt_mysql
function that SHALL specify the initialization vector for block modes that require
it.
RQ.SRS008.AES.MySQL.Decrypt.Function.Parameters.ReturnValue
version: 1.0
ClickHouse SHALL return the decrypted value of the data
using String
data type as the result of aes_decrypt_mysql
function.
RQ.SRS008.AES.MySQL.Decrypt.Function.Key.Length.TooShortError
version: 1.0
ClickHouse SHALL return an error if the key
length is less than the minimum for the aes_decrypt_mysql
function for a given block mode.
RQ.SRS008.AES.MySQL.Decrypt.Function.Key.Length.TooLong
version: 1.0
ClickHouse SHALL use folding algorithm specified below if the key
length is longer than required
for the aes_decrypt_mysql
function for a given block mode.
def fold_key(key, cipher_key_size):
key = list(key) if not isinstance(key, (list, tuple)) else key
folded_key = key[:cipher_key_size]
for i in range(cipher_key_size, len(key)):
print(i % cipher_key_size, i)
folded_key[i % cipher_key_size] ^= key[i]
return folded_key
RQ.SRS008.AES.MySQL.Decrypt.Function.InitializationVector.Length.TooShortError
version: 1.0
ClickHouse SHALL return an error if the iv
length is specified and is less than the minimum
that is required for the aes_decrypt_mysql
function for a given block mode.
RQ.SRS008.AES.MySQL.Decrypt.Function.InitializationVector.Length.TooLong
version: 1.0
ClickHouse SHALL use the first N
bytes that are required if the iv
is specified and
its length is longer than required for the aes_decrypt_mysql
function for a given block mode.
RQ.SRS008.AES.MySQL.Decrypt.Function.InitializationVector.NotValidForMode
version: 1.0
ClickHouse SHALL return an error if the iv
is specified for the aes_decrypt_mysql
function for a mode that does not need it.
RQ.SRS008.AES.MySQL.Decrypt.Function.Mode.KeyAndInitializationVector.Length
version: 1.0
ClickHouse SHALL return an error when the aes_decrypt_mysql
function is called with the following parameter values
aes-128-ecb
mode andkey
is less than 16 bytes oriv
is specifiedaes-192-ecb
mode andkey
is less than 24 bytes oriv
is specifiedaes-256-ecb
mode andkey
is less than 32 bytes oriv
is specifiedaes-128-cbc
mode andkey
is less than 16 bytes or if specifiediv
is less than 16 bytesaes-192-cbc
mode andkey
is less than 24 bytes or if specifiediv
is less than 16 bytesaes-256-cbc
mode andkey
is less than 32 bytes or if specifiediv
is less than 16 bytesaes-128-cfb1
mode andkey
is less than 16 bytes or if specifiediv
is less than 16 bytesaes-192-cfb1
mode andkey
is less than 24 bytes or if specifiediv
is less than 16 bytesaes-256-cfb1
mode andkey
is less than 32 bytes or if specifiediv
is less than 16 bytesaes-128-cfb8
mode andkey
is less than 16 bytes and if specifiediv
is less than 16 bytesaes-192-cfb8
mode andkey
is less than 24 bytes or if specifiediv
is less than 16 bytesaes-256-cfb8
mode andkey
is less than 32 bytes or if specifiediv
is less than 16 bytesaes-128-cfb128
mode andkey
is less than 16 bytes or if specifiediv
is less than 16 bytesaes-192-cfb128
mode andkey
is less than 24 bytes or if specifiediv
is less than 16 bytesaes-256-cfb128
mode andkey
is less than 32 bytes or if specifiediv
is less than 16 bytesaes-128-ofb
mode andkey
is less than 16 bytes or if specifiediv
is less than 16 bytesaes-192-ofb
mode andkey
is less than 24 bytes or if specifiediv
is less than 16 bytesaes-256-ofb
mode andkey
is less than 32 bytes or if specifiediv
is less than 16 bytes