-
Notifications
You must be signed in to change notification settings - Fork 5
/
PICA_signverify.c
109 lines (79 loc) · 2.13 KB
/
PICA_signverify.c
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
(c) Copyright 2012 - 2019 Anton Sviridenko
https://picapica.im
This program 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, version 3.
This program 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/>.
*/
#include "PICA_signverify.h"
#include <openssl/evp.h>
int PICA_signverify(EVP_PKEY *pubkey, void **datapointers, size_t *datalengths, unsigned char *sig, size_t siglen)
{
EVP_MD_CTX *mdctx = NULL;
int ret = 0;
mdctx = EVP_MD_CTX_create();
if (!mdctx)
return 0;
ret = EVP_DigestVerifyInit(mdctx, NULL, EVP_sha224(), NULL, pubkey);
if (ret != 1)
goto signverify_exit;
while (*datapointers)
{
ret = EVP_DigestVerifyUpdate(mdctx, *datapointers, *datalengths);
if (ret != 1)
goto signverify_exit;
datapointers++;
datalengths++;
}
ret = EVP_DigestVerifyFinal(mdctx, sig, siglen);
if (ret != 1)
ret = 0;
signverify_exit:
EVP_MD_CTX_destroy(mdctx);
return ret;
}
int PICA_do_signature(EVP_PKEY *privkey, void **datapointers, size_t *datalengths, unsigned char **sig, size_t *siglen)
{
int ret = 0;
EVP_MD_CTX *mdctx = NULL;
mdctx = EVP_MD_CTX_create();
if (!mdctx)
return 0;
ret = EVP_DigestSignInit(mdctx, NULL, EVP_sha224(), NULL, privkey);
if (ret != 1)
goto sig_exit;
while(*datapointers)
{
ret = EVP_DigestSignUpdate(mdctx, *datapointers, *datalengths);
if (ret != 1)
{
goto sig_exit;
break;
}
datapointers++;
datalengths++;
}
ret = EVP_DigestSignFinal(mdctx, NULL, (size_t*) siglen);
if (ret != 1)
goto sig_exit;
*sig = (unsigned char*) malloc(*siglen);
if (!*sig)
{
ret = 0;
goto sig_exit;
}
ret = EVP_DigestSignFinal(mdctx, *sig, (size_t*) siglen);
if (ret == 1)
ret = 1;
else
free(*sig);
sig_exit:
EVP_MD_CTX_destroy(mdctx);
return ret;
}