AES_GCM_ENCRYPT (value, init_vector, key [, keysize])
Argument
| Required/
| Description
|
---|---|---|
value
| Required
| String data type. The plaintext value to be encrypted into ciphertext.
|
init_vector
| Required
| String data type. Use the initialization vector (IV) to encrypt the plaintext. The IV must be 96-bit and randomly generated. The IV is a block of bits that is used along with the key during encryption to add randomness to the start of the encryption process.
Do not re-use the IV with the same key and a different encryption string.
|
key
| Required
| String data type of size 128, 192, or 256 bits. If the size of the key is less than the keysize, the remainder is padded as null.
|
keysize
| The size of the key argument, in bits, determines whether the keysize argument is optional or required.
| Integer data type. Size of the key provided.
Possible values:128, 192, or 256 bits. Default value is 128 bits.
|
AES_GCM_ENCRYPT('832-17-1672', '012345678901', '1234567890123456', 128)
AES_GCM_ENCRYPT('832-17-1672', '123456789012', '12345678901234567', 192)