aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/https/x509/mpi.h
blob: edac2eee40aafe97ff601aa94654804fd57bb800 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
 * Copyright (C) 2003, 2004, 2005 Free Software Foundation
 *
 * Author: Nikos Mavrogiannopoulos
 *
 * This file is part of GNUTLS.
 *
 * The GNUTLS library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
 * USA
 *
 */

#include <gnutls_int.h>
#include "x509.h"

int MHD__gnutls_x509_crt_get_mpis (MHD_gnutls_x509_crt_t cert,
                                   mpi_t * params, int *params_size);
int MHD__gnutls_x509_read_rsa_params (opaque * der, int dersize,
                                      mpi_t * params);
int MHD__gnutls_x509_read_dsa_pubkey (opaque * der, int dersize,
                                      mpi_t * params);
int MHD__gnutls_x509_read_dsa_params (opaque * der, int dersize,
                                      mpi_t * params);

int MHD__gnutls_x509_write_rsa_params (mpi_t * params, int params_size,
                                       MHD_gnutls_datum_t * der);
int MHD__gnutls_x509_write_dsa_params (mpi_t * params, int params_size,
                                       MHD_gnutls_datum_t * der);
int MHD__gnutls_x509_write_dsa_public_key (mpi_t * params, int params_size,
                                           MHD_gnutls_datum_t * der);

int MHD__gnutls_x509_read_uint (ASN1_TYPE node, const char *value,
                                unsigned int *ret);

int MHD__gnutls_x509_read_der_int (opaque * der, int dersize, mpi_t * out);

int MHD__gnutls_x509_read_int (ASN1_TYPE node, const char *value,
                               mpi_t * ret_mpi);
int MHD__gnutls_x509_write_int (ASN1_TYPE node, const char *value, mpi_t mpi,
                                int lz);
int MHD__gnutls_x509_write_uint32 (ASN1_TYPE node, const char *value,
                                   uint32_t num);

int MHD__gnutls_x509_write_sig_params (ASN1_TYPE dst, const char *dst_name,
                                       enum MHD_GNUTLS_PublicKeyAlgorithm
                                       pk_algorithm,
                                       enum MHD_GNUTLS_HashAlgorithm,
                                       mpi_t * params, int params_size);