nettle
3.7.3
About:
Nettle
is a low-level cryptographic library.
Fossies
Dox
:
nettle-3.7.3.tar.gz
("unofficial" and yet experimental doxygen-generated source code documentation)
pss.h
Go to the documentation of this file.
1
/* pss.h
2
3
PKCS#1 RSA-PSS (RFC-3447).
4
5
Copyright (C) 2017 Daiki Ueno
6
7
This file is part of GNU Nettle.
8
9
GNU Nettle is free software: you can redistribute it and/or
10
modify it under the terms of either:
11
12
* the GNU Lesser General Public License as published by the Free
13
Software Foundation; either version 3 of the License, or (at your
14
option) any later version.
15
16
or
17
18
* the GNU General Public License as published by the Free
19
Software Foundation; either version 2 of the License, or (at your
20
option) any later version.
21
22
or both in parallel, as here.
23
24
GNU Nettle is distributed in the hope that it will be useful,
25
but WITHOUT ANY WARRANTY; without even the implied warranty of
26
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27
General Public License for more details.
28
29
You should have received copies of the GNU General Public License and
30
the GNU Lesser General Public License along with this program. If
31
not, see http://www.gnu.org/licenses/.
32
*/
33
34
#ifndef NETTLE_PSS_H_INCLUDED
35
#define NETTLE_PSS_H_INCLUDED
36
37
#include "
nettle-meta.h
"
38
#include "
bignum.h
"
39
40
#ifdef __cplusplus
41
extern
"C"
42
{
43
#endif
44
45
/* Namespace mangling */
46
#define pss_encode_mgf1 nettle_pss_encode_mgf1
47
#define pss_verify_mgf1 nettle_pss_verify_mgf1
48
49
int
50
pss_encode_mgf1
(
mpz_t
m,
size_t
bits,
51
const
struct
nettle_hash
*
hash
,
52
size_t
salt_length,
const
uint8_t *salt,
53
const
uint8_t *digest);
54
55
int
56
pss_verify_mgf1
(
const
mpz_t
m,
size_t
bits,
57
const
struct
nettle_hash
*
hash
,
58
size_t
salt_length,
59
const
uint8_t *digest);
60
61
#ifdef __cplusplus
62
}
63
#endif
64
65
#endif
/* NETTLE_PSS_H_INCLUDED */
bignum.h
hash
#define hash
mpz_t
__mpz_struct mpz_t[1]
Definition:
mini-gmp.h:77
nettle-meta.h
pss_verify_mgf1
#define pss_verify_mgf1
Definition:
pss.h:47
pss_encode_mgf1
#define pss_encode_mgf1
Definition:
pss.h:46
nettle_hash
Definition:
nettle-meta.h:93
pss.h
Generated by
1.9.2