MySQL 8.3.0
Source Code Documentation
my_aes_impl.h
Go to the documentation of this file.
1/* Copyright (c) 2014, 2023, Oracle and/or its affiliates.
2
3This program is free software; you can redistribute it and/or modify
4it under the terms of the GNU General Public License, version 2.0,
5as published by the Free Software Foundation.
6
7This program is also distributed with certain software (including
8but not limited to OpenSSL) that is licensed under separate terms,
9as designated in a particular file or component or in included license
10documentation. The authors of MySQL hereby grant you an additional
11permission to link the program and your derivative works with the
12separately licensed software that they have included with MySQL.
13
14This program is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License, version 2.0, for more details.
18
19You should have received a copy of the GNU General Public License
20along with this program; if not, write to the Free Software
21Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
22
23/**
24 @file mysys/my_aes_impl.h
25*/
26
27/** Maximum supported key length */
28#define MAX_AES_KEY_LENGTH 256
29
30/* TODO: remove in a future version */
31/* Guard against using an old export control restriction #define */
32#ifdef AES_USE_KEY_BITS
33#error AES_USE_KEY_BITS not supported
34#endif
35
36extern uint *my_aes_opmode_key_sizes;
37
38void my_aes_create_key(const unsigned char *key, uint key_length, uint8 *rkey,
39 enum my_aes_opmode opmode);
my_aes_opmode
Supported AES cipher/block mode combos.
Definition: my_aes.h:47
void my_aes_create_key(const unsigned char *key, uint key_length, uint8 *rkey, enum my_aes_opmode opmode)
Transforms an arbitrary long key into a fixed length AES key.
Definition: my_aes.cc:55
uint * my_aes_opmode_key_sizes
Definition: my_aes_openssl.cc:72
uint8_t uint8
Definition: my_inttypes.h:62
required string key
Definition: replication_asynchronous_connection_failover.proto:59