aboutsummaryrefslogtreecommitdiff
path: root/tests/test-ecdsa.c
AgeCommit message (Expand)Author
2015-12-23First round of fixes for new ASN.1 and test code.Rob Austein
2015-12-22Test code for ASN.1 public key functions.Rob Austein
2015-12-22Add ASN.1 support for public keys (X.509 SubjectPublicKeyInfo format).Rob Austein
2015-12-21Fix names of private key DER functions.Rob Austein
2015-12-20Drop support for the ASN.1-based ECDSA signature format in favor ofRob Austein
2015-12-20RPC server stuff mostly written. Compiles, not yet tested. RPCRob Austein
2015-12-13whack copyrightsPaul Selkirk
2015-11-13Merge branch 'config_core_selector'Paul Selkirk
2015-10-31fix time calculation in test-ecdsaPaul Selkirk
2015-10-29Remove unused includes.Paul Selkirk
2015-10-04Whack libhal API to use current configure_core_selector mechanism.Rob Austein
2015-09-14Fencepost error in hal_ecdas_key_from_ecpoint().Rob Austein
2015-09-12PKCS #11 testing turned up a problem with P-521, don't reallyRob Austein
2015-09-02Add PKCS11 ECDSA signature format.Rob Austein
2015-09-02Clean up excessively complicated handling of opaque types in hash andRob Austein
2015-08-27Add point validation check to hal_ecdsa_verify(). Update README.mdRob Austein
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
5-05-20 16:57:33 -0400 Add csprng and hash modules. Add real error codes instead of magic' href='/sw/libhal/commit/hal_io_eim.c?h=auto_zeroise&id=fa13a8485ce07aecfbfa481baccfc33565f0be0d'>fa13a84
93941c6
e2de6b1

93941c6
e2de6b1

93941c6
e2de6b1

93941c6


93941c6
e164eec
93941c6
6a9c597
93941c6

93941c6

e2de6b1
93941c6



e2de6b1






93941c6

b3bbd3d
93941c6
e2de6b1
fa13a84
ff4ff7c


e2de6b1

93941c6
e2de6b1

93941c6
e2de6b1
93941c6
b3bbd3d
e2de6b1






93941c6

b3bbd3d
93941c6
e2de6b1


93941c6
ff4ff7c


e2de6b1

93941c6
e2de6b1


b3bbd3d
e2de6b1








93941c6

b3bbd3d
93941c6
e2de6b1
b3bbd3d
93941c6

b3bbd3d
93941c6
e2de6b1
b3bbd3d
93941c6

b3bbd3d
93941c6
e2de6b1








b3bbd3d
e2de6b1



cf865e9
e2de6b1
93941c6
e2de6b1
93941c6

b3bbd3d
93941c6
e2de6b1
b3bbd3d
93941c6

b3bbd3d
93941c6
e2de6b1
b3bbd3d
93941c6
cf865e9





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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187