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
|
/*
* Copyright (C) 2003, 2004, 2005 Free Software Foundation
*
* Author: Nikos Mavroyanopoulos
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
*/
#include <gnutls_int.h>
#include "x509.h"
int _gnutls_x509_crt_get_mpis(gnutls_x509_crt_t cert,
mpi_t * params, int *params_size);
int _gnutls_x509_read_rsa_params(opaque * der, int dersize,
mpi_t * params);
int _gnutls_x509_read_dsa_pubkey(opaque * der, int dersize,
mpi_t * params);
int _gnutls_x509_read_dsa_params(opaque * der, int dersize,
mpi_t * params);
int _gnutls_x509_write_rsa_params(mpi_t * params, int params_size,
gnutls_datum_t * der);
int _gnutls_x509_write_dsa_params(mpi_t * params, int params_size,
gnutls_datum_t * der);
int _gnutls_x509_write_dsa_public_key(mpi_t * params, int params_size,
gnutls_datum_t * der);
int _gnutls_x509_read_uint(ASN1_TYPE node, const char *value,
unsigned int *ret);
int _gnutls_x509_read_int(ASN1_TYPE node, const char *value,
mpi_t * ret_mpi);
int _gnutls_x509_write_int(ASN1_TYPE node, const char *value, mpi_t mpi,
int lz);
int _gnutls_x509_write_uint32(ASN1_TYPE node, const char *value, uint32 num);
int _gnutls_x509_write_sig_params(ASN1_TYPE dst, const char *dst_name,
gnutls_pk_algorithm_t pk_algorithm, gnutls_digest_algorithm_t,
mpi_t * params, int params_size);
|