mirror of
https://github.com/MariaDB/server.git
synced 2026-04-26 10:15:29 +02:00
rename "encryption key management plugin" to "encryption plugin"
because it's going to do more than just key management
This commit is contained in:
parent
6d3dace7d9
commit
9ccafffc29
13 changed files with 40 additions and 40 deletions
|
|
@ -24,7 +24,7 @@
|
|||
*/
|
||||
|
||||
#include <my_global.h>
|
||||
#include <mysql/plugin_encryption_key_management.h>
|
||||
#include <mysql/plugin_encryption.h>
|
||||
#include <string.h>
|
||||
#include <myisampack.h>
|
||||
|
||||
|
|
@ -61,8 +61,8 @@ static unsigned int get_key(unsigned int version, unsigned char* dstbuf, unsigne
|
|||
return 0;
|
||||
}
|
||||
|
||||
struct st_mariadb_encryption_key_management debug_key_management_plugin= {
|
||||
MariaDB_ENCRYPTION_KEY_MANAGEMENT_INTERFACE_VERSION,
|
||||
struct st_mariadb_encryption debug_key_management_plugin= {
|
||||
MariaDB_ENCRYPTION_INTERFACE_VERSION,
|
||||
get_latest_key_version,
|
||||
get_key
|
||||
};
|
||||
|
|
@ -72,7 +72,7 @@ struct st_mariadb_encryption_key_management debug_key_management_plugin= {
|
|||
*/
|
||||
maria_declare_plugin(debug_key_management)
|
||||
{
|
||||
MariaDB_ENCRYPTION_KEY_MANAGEMENT_PLUGIN,
|
||||
MariaDB_ENCRYPTION_PLUGIN,
|
||||
&debug_key_management_plugin,
|
||||
"debug_key_management",
|
||||
"Sergei Golubchik",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue