2019-08-06 16:07:33 +02:00
|
|
|
/* frontend.h - Definitions for the keyboxd frontend
|
|
|
|
* Copyright (C) 2019 g10 Code GmbH
|
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
|
|
|
* GnuPG 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; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GnuPG 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, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KBX_FRONTEND_H
|
|
|
|
#define KBX_FRONTEND_H
|
|
|
|
|
|
|
|
#include "keybox-search-desc.h"
|
|
|
|
|
|
|
|
|
2019-12-10 09:35:33 +01:00
|
|
|
gpg_error_t kbxd_set_database (ctrl_t ctrl,
|
|
|
|
const char *filename_arg, int readonly);
|
2019-08-06 16:07:33 +02:00
|
|
|
|
|
|
|
void kbxd_release_session_info (ctrl_t ctrl);
|
|
|
|
|
2020-09-24 16:38:21 +02:00
|
|
|
gpg_error_t kbxd_rollback (void);
|
|
|
|
gpg_error_t kbxd_commit (void);
|
2019-08-06 16:07:33 +02:00
|
|
|
gpg_error_t kbxd_search (ctrl_t ctrl,
|
|
|
|
KEYDB_SEARCH_DESC *desc, unsigned int ndesc,
|
|
|
|
int reset);
|
2019-10-01 20:09:42 +02:00
|
|
|
gpg_error_t kbxd_store (ctrl_t ctrl, const void *blob, size_t bloblen,
|
2019-11-28 09:39:35 +01:00
|
|
|
enum kbxd_store_modes mode);
|
2019-11-28 11:19:33 +01:00
|
|
|
gpg_error_t kbxd_delete (ctrl_t ctrl, const unsigned char *ubid);
|
2019-08-06 16:07:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
#endif /*KBX_FRONTEND_H*/
|