diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-01-02 22:53:54 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-02-10 10:21:18 +0100 |
commit | 21430e43786edaf5b689c8b4aed49341bb7021c8 (patch) | |
tree | d3d094c02cd596d66da0b5c23c3f89698c5ed7d9 /libservices | |
parent | cf8bf0b68e1c4281535813d4087680296138271c (diff) | |
download | mariadb-git-21430e43786edaf5b689c8b4aed49341bb7021c8.tar.gz |
encryption keys service
Diffstat (limited to 'libservices')
-rw-r--r-- | libservices/CMakeLists.txt | 1 | ||||
-rw-r--r-- | libservices/cryptokeys_service.c | 17 | ||||
-rw-r--r-- | libservices/encryption_keys_service.c | 17 |
3 files changed, 35 insertions, 0 deletions
diff --git a/libservices/CMakeLists.txt b/libservices/CMakeLists.txt index 2d105348410..74055ee5b11 100644 --- a/libservices/CMakeLists.txt +++ b/libservices/CMakeLists.txt @@ -28,6 +28,7 @@ SET(MYSQLSERVICES_SOURCES my_sha1_service.c my_md5_service.c wsrep_service.c + encryption_keys_service.c kill_statement_service.c logger_service.c) diff --git a/libservices/cryptokeys_service.c b/libservices/cryptokeys_service.c new file mode 100644 index 00000000000..1af64aab450 --- /dev/null +++ b/libservices/cryptokeys_service.c @@ -0,0 +1,17 @@ +/* Copyright (c) 2015 MariaDB + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 of the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ + +#include <service_versions.h> +SERVICE_VERSION cryptokeys_service= (void*)VERSION_cryptokeys; diff --git a/libservices/encryption_keys_service.c b/libservices/encryption_keys_service.c new file mode 100644 index 00000000000..81fc7def201 --- /dev/null +++ b/libservices/encryption_keys_service.c @@ -0,0 +1,17 @@ +/* Copyright (c) 2015 MariaDB + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 of the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ + +#include <service_versions.h> +SERVICE_VERSION encryption_keys_service= (void*)VERSION_encryption_keys; |