MySQL 8.0.37
Source Code Documentation
aes.h
Go to the documentation of this file.
1/* Copyright (c) 2021, 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#ifndef AES_INCLUDED
25#define AES_INCLUDED
26
27#include <functional>
28#include <map>
29#include <string>
30#include <utility>
31
32#include <openssl/evp.h>
33
34namespace keyring_common {
35namespace aes_encryption {
36
37/** Supported AES cipher/block mode combos */
45 /* Add new values above this */
47};
48
58};
59
60using block_mode_key = std::pair<std::string, size_t>;
61using Known_block_mode_map = std::map<block_mode_key, Keyring_aes_opmode>;
62
64 public:
65 Aes_operation_context(const std::string data_id, const std::string auth_id,
66 const std::string mode, size_t block_size);
68 const std::string data_id() const { return data_id_; }
69 const std::string auth_id() const { return auth_id_; }
70 Keyring_aes_opmode opmode() const { return opmode_; }
71 bool valid() const { return valid_; }
73
74 private:
75 std::string data_id_;
76 std::string auth_id_;
78 bool valid_;
79};
80
81const EVP_CIPHER *aes_evp_type(const Keyring_aes_opmode mode);
82
83size_t get_ciphertext_size(size_t input_size, const Keyring_aes_opmode mode);
84
85aes_return_status aes_encrypt(const unsigned char *source,
86 unsigned int source_length, unsigned char *dest,
87 const unsigned char *key, unsigned int key_length,
88 Keyring_aes_opmode mode, const unsigned char *iv,
89 bool padding, size_t *encrypted_length);
90
91aes_return_status aes_decrypt(const unsigned char *source,
92 unsigned int source_length, unsigned char *dest,
93 const unsigned char *key, unsigned int key_length,
94 Keyring_aes_opmode mode, const unsigned char *iv,
95 bool padding, size_t *decrypted_length);
96
97} // namespace aes_encryption
98} // namespace keyring_common
99
100#endif // !AES_INCLUDED
Keyring_aes_opmode opmode() const
Definition: aes.h:70
Keyring_aes_opmode opmode_
Definition: aes.h:77
Aes_operation_context(const std::string data_id, const std::string auth_id, const std::string mode, size_t block_size)
Definition: aes.cc:49
const std::string data_id() const
Definition: aes.h:68
static const Known_block_mode_map s_blockmodes
Definition: aes.h:72
const std::string auth_id() const
Definition: aes.h:69
aes_return_status
Definition: aes.h:49
@ AES_OP_OK
Definition: aes.h:50
@ AES_DECRYPTION_ERROR
Definition: aes.h:57
@ AES_IV_EMPTY
Definition: aes.h:55
@ AES_CTX_ALLOCATION_ERROR
Definition: aes.h:53
@ AES_INVALID_BLOCK_MODE
Definition: aes.h:54
@ AES_KEY_TRANSFORMATION_ERROR
Definition: aes.h:52
@ AES_OUTPUT_SIZE_NULL
Definition: aes.h:51
@ AES_ENCRYPTION_ERROR
Definition: aes.h:56
const EVP_CIPHER * aes_evp_type(const Keyring_aes_opmode mode)
Definition: aes.cc:72
aes_return_status aes_decrypt(const unsigned char *source, unsigned int source_length, unsigned char *dest, const unsigned char *key, unsigned int key_length, enum Keyring_aes_opmode mode, const unsigned char *iv, bool padding, size_t *decrypted_length)
Definition: aes.cc:191
aes_return_status aes_encrypt(const unsigned char *source, unsigned int source_length, unsigned char *dest, const unsigned char *key, unsigned int key_length, Keyring_aes_opmode mode, const unsigned char *iv, bool padding, size_t *encrypted_length)
Definition: aes.cc:141
Keyring_aes_opmode
Supported AES cipher/block mode combos.
Definition: aes.h:38
std::pair< std::string, size_t > block_mode_key
Definition: aes.h:60
size_t get_ciphertext_size(size_t input_size, const Keyring_aes_opmode mode)
Definition: aes.cc:131
std::map< block_mode_key, Keyring_aes_opmode > Known_block_mode_map
Definition: aes.h:61
Definition: keyring_encryption_service_definition.h:32
mode
Definition: file_handle.h:60
required string key
Definition: replication_asynchronous_connection_failover.proto:60
repeated Source source
Definition: replication_asynchronous_connection_failover.proto:42