frosix

Multiparty signature service (experimental)
Log | Files | Refs | README | LICENSE

frosix-httpd_sig.h (1895B)


      1 /*
      2   This file is part of Frosix
      3   Copyright (C) 2022, 2023 Joel Urech
      4 
      5   Frosix is free software; you can redistribute it and/or modify it under the
      6   terms of the GNU Affero General Public License as published by the Free Software
      7   Foundation; either version 3, or (at your option) any later version.
      8 
      9   Frosix is distributed in the hope that it will be useful, but WITHOUT ANY
     10   WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
     11   A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more details.
     12 
     13   You should have received a copy of the GNU Affero General Public License along with
     14   Frosix; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
     15 */
     16 /**
     17  * @file backend/frosix-httpd_sign.h
     18  * @brief functions to handle incoming requests on /sign-*
     19  * @author Joel Urech
     20  */
     21 #ifndef FROSIX_HTTPD_SIGN_H
     22 #define FROSIX_HTTPD_SIGN_H
     23 #include "frosix-httpd.h"
     24 #include "keygen.h"
     25 #include "frosix_util_lib.h"
     26 #include "frosix_crypto.h"
     27 #include <microhttpd.h>
     28 #include <taler/taler_mhd_lib.h>
     29 
     30 MHD_RESULT
     31 FH_handler_sig_commitment_post (
     32   struct MHD_Connection *connection,
     33   struct TM_HandlerContext *hc,
     34   const struct FROSIX_SigRequestIdP *id,
     35   const char *sign_commitment_data,
     36   size_t *sign_commitment_data_size);
     37 
     38 
     39 MHD_RESULT
     40 FH_handler_sig_share_post (
     41   struct MHD_Connection *connection,
     42   struct TM_HandlerContext *hc,
     43   const struct FROSIX_SigRequestIdP *id,
     44   const char *sign_share_data,
     45   size_t *sign_share_data_size);
     46 
     47 
     48 /**
     49  * FIXME
     50 */
     51 void
     52 FROSIX_raw_key_to_struct (struct FROST_KeyPair *key_pair,
     53                           const struct FROSIX_KeyDataRaw *decrypted);
     54 
     55 
     56 /**
     57  * FIXME
     58 */
     59 void
     60 FROSIX_compute_db_commitment_id (struct GNUNET_HashCode *db_id,
     61                                  const struct FROST_HashCode *enc_key_hash,
     62                                  const struct FROST_Commitment *commitment);
     63 
     64 #endif