aboutsummaryrefslogtreecommitdiff
path: root/tests/test-ecdsa.c
AgeCommit message (Collapse)Author
2015-09-02Add PKCS11 ECDSA signature format.Rob Austein
2015-09-02Clean up excessively complicated handling of opaque types in hash andRob Austein
RSA code; use simpler model (pointer to incomplete structure) used in ECDSA code. Refactor RSA code to use shared ASN.1 routines.
2015-08-27Add point validation check to hal_ecdsa_verify(). Update README.mdRob Austein
and code comments.
2015-08-26Signature works better if we read the entire hash.Rob Austein
2015-08-25More ASN.1 fixes.Rob Austein
2015-08-25Rework RFC 5915 ASN.1.Rob Austein
2015-08-25More test code.Rob Austein
2015-08-25Add keygen/sign/verify test with dynamic (not test vector) key.Rob Austein
2015-08-24First stumblings towards ECDSA test code.Rob Austein
a@hactrn.net> 2015-09-22 13:14:30 -0400 committer Rob Austein <sra@hactrn.net> 2015-09-22 13:14:30 -0400 Makefile cleanup.' href='/sw/pkcs11/commit/GNUmakefile?id=a927c24d7cc3bed9fe64907afacee39c7756872c'>a927c24
5479e52




a927c24






b204d24







291a2e0
ece23e9

0c8d1d7
a927c24
ece23e9
9ed6a78
0c8d1d7
b204d24



5479e52





a927c24



5f0d1c2



e9eb486
0c8d1d7

c455627
0c8d1d7









e9eb486


303152d
0c8d1d7


ece23e9
0c8d1d7

5f0d1c2
0c8d1d7
c455627



ece23e9
c455627
0c8d1d7

291a2e0
0c8d1d7
5479e52
a927c24

f723a3b
35295b4

a927c24
5479e52




a927c24
5479e52


a927c24





5479e52

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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141