MySQL 8.4.0
Source Code Documentation
my_aes_impl.h
Go to the documentation of this file.
1/* Copyright (c) 2014, 2024, 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 designed to work 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 either included with
13the program or referenced in the documentation.
14
15This program is distributed in the hope that it will be useful,
16but WITHOUT ANY WARRANTY; without even the implied warranty of
17MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18GNU General Public License, version 2.0, for more details.
19
20You should have received a copy of the GNU General Public License
21along with this program; if not, write to the Free Software
22Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24/**
25 @file mysys/my_aes_impl.h
26*/
27
28/** Maximum supported key length */
29#define MAX_AES_KEY_LENGTH 256
30
31/* TODO: remove in a future version */
32/* Guard against using an old export control restriction #define */
33#ifdef AES_USE_KEY_BITS
34#error AES_USE_KEY_BITS not supported
35#endif
36
37extern uint *my_aes_opmode_key_sizes;
38
39void my_aes_create_key(const unsigned char *key, uint key_length, uint8 *rkey,
40 enum my_aes_opmode opmode);
my_aes_opmode
Supported AES cipher/block mode combos.
Definition: my_aes.h:48
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:56
uint * my_aes_opmode_key_sizes
Definition: my_aes_openssl.cc:73
uint8_t uint8
Definition: my_inttypes.h:63
required string key
Definition: replication_asynchronous_connection_failover.proto:60