File: spelling-errors.patch

package info (click to toggle)
libcrypt-openssl-ec-perl 1.31-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 472 kB
  • sloc: pascal: 756; perl: 391; makefile: 3
file content (213 lines) | stat: -rw-r--r-- 7,580 bytes parent folder | download
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
Description: Spelling errors
Author: Xavier Guimard <x.guimard@free.fr>
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=123670
Last-Update: 2017-11-18

--- a/lib/Crypt/OpenSSL/EC.pm
+++ b/lib/Crypt/OpenSSL/EC.pm
@@ -541,7 +541,7 @@
   a      BIGNUM with parameter a of the equation
   b      BIGNUM with parameter b of the equation
   ctx    BN_CTX object (optional)
- return 1 on success and 0 if an error occured
+ return 1 on success and 0 if an error occurred
 
 =item Crypt::OpenSSL::EC::EC_GROUP::method_of($group);
 
@@ -570,7 +570,7 @@
   a      BIGNUM for parameter a of the equation
   b      BIGNUM for parameter b of the equation
   ctx    BN_CTX object (optional)
- return 1 on success and 0 if an error occured
+ return 1 on success and 0 if an error occurred
 
 =item Crypt::OpenSSL::EC::EC_GROUP::set_curve_GF2m($group, $p, $a, $b, $ctx);
 
@@ -583,7 +583,7 @@
   a      BIGNUM with parameter a of the equation
   b      BIGNUM with parameter b of the equation
   ctx    BN_CTX object (optional)
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 =item Crypt::OpenSSL::EC::EC_GROUP::get_curve_GF2m($group, $p, $a, $b, $ctx);
 
@@ -595,7 +595,7 @@
   a      BIGNUM for parameter a of the equation
   b      BIGNUM for parameter b of the equation
   ctx    BN_CTX object (optional)
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 
 =item Crypt::OpenSSL::EC::print_errs();
@@ -626,7 +626,7 @@
 Copies EC_POINT object
   dst  destination EC_POINT object
   src  source EC_POINT object
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 =item Crypt::OpenSSL::EC::EC_POINT::dup($src, $group);
 
@@ -641,7 +641,7 @@
 Sets a point to infinity (neutral element)
   group  underlying EC_GROUP object
   point  EC_POINT to set to infinity
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 =item Crypt::OpenSSL::EC::EC_POINT::get_Jprojective_coordinates_GFp($group, $p, $x, $y, $z, $ctx);
 
@@ -652,7 +652,7 @@
   y      BIGNUM for the y-coordinate
   z      BIGNUM for the z-coordinate
   ctx    BN_CTX object (optional)
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 =item Crypt::OpenSSL::EC::EC_POINT::set_affine_coordinates_GFp($group, $p, $x, $y, $ctx);
 
@@ -662,7 +662,7 @@
   x      BIGNUM with the x-coordinate
   y      BIGNUM with the y-coordinate
   ctx    BN_CTX object (optional)
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 =item Crypt::OpenSSL::EC::EC_POINT::get_affine_coordinates_GFp($group, $p, $x, $y, $ctx);
 
@@ -672,7 +672,7 @@
   x      BIGNUM for the x-coordinate
   y      BIGNUM for the y-coordinate
   ctx    BN_CTX object (optional)
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 =item Crypt::OpenSSL::EC::EC_POINT::set_compressed_coordinates_GFp($group, $p, $x, $y_bit, $ctx);
 
@@ -682,7 +682,7 @@
   x      BIGNUM with x-coordinate
   y_bit  integer with the y-Bit (either 0 or 1)
   ctx    BN_CTX object (optional)
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 =item Crypt::OpenSSL::EC::EC_POINT::set_affine_coordinates_GF2m($group, $p, $x, $y, $ctx);
 
@@ -694,7 +694,7 @@
   x      BIGNUM with the x-coordinate
   y      BIGNUM with the y-coordinate
   ctx    BN_CTX object (optional)
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 =item Crypt::OpenSSL::EC::EC_POINT::get_affine_coordinates_GF2m($group, $p, $x, $y, $ctx);
 
@@ -706,7 +706,7 @@
   x      BIGNUM for the x-coordinate
   y      BIGNUM for the y-coordinate
   ctx    BN_CTX object (optional)
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 =item Crypt::OpenSSL::EC::EC_POINT::set_compressed_coordinates_GF2m($group, $p, $x, $y_bit, $ctx);
 
@@ -718,7 +718,7 @@
   x      BIGNUM with x-coordinate
   y_bit  integer with the y-Bit (either 0 or 1)
   ctx    BN_CTX object (optional)
-  \return 1 on success and 0 if an error occured
+  \return 1 on success and 0 if an error occurred
 
 
 =item Crypt::OpenSSL::EC::EC_POINT::is_at_infinity($group, $p);
@@ -744,7 +744,7 @@
   p      EC_POINT object
   buf    buffer with the encoded ec point
   ctx    BN_CTX object (optional)
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 =item Crypt::OpenSSL::EC::EC_POINT::point2bn($group, $p, $form, $bn, $ctx);
 
@@ -763,7 +763,7 @@
   a      EC_POINT object with the first summand
   b      EC_POINT object with the second summand
   ctx    BN_CTX object (optional)
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 =item Crypt::OpenSSL::EC::EC_POINT::dbl($group, $r, $a, $ctx);
 
@@ -772,7 +772,7 @@
   r      EC_POINT object for the result (r = 2 * a)
   a      EC_POINT object 
   ctx    BN_CTX object (optional)
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 =item Crypt::OpenSSL::EC::EC_POINT::invert($group, $a, $ctx);
 
@@ -780,7 +780,7 @@
   group  underlying EC_GROUP object
   a      EC_POINT object to be inverted (it's used for the result as well)
   ctx    BN_CTX object (optional)
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 =item Crypt::OpenSSL::EC::EC_POINT::is_on_curve($group, $point, $ctx));
 
@@ -817,7 +817,7 @@
   order      the order of the group generated by the generator.
   cofactor   the index of the sub-group generated by the generator
            in the group of all points on the elliptic curve.
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 =item Crypt::OpenSSL::EC::EC_GROUP::get0_generator($group);
 
@@ -899,7 +899,7 @@
   group  EC_GROUP object
   order  BIGNUM to which the order is copied
   ctx    BN_CTX object (optional)
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 =item Crypt::OpenSSL::EC::EC_GROUP::get_cofactor($group, $cofactopr, $ctx)
 
@@ -908,7 +908,7 @@
   group     EC_GROUP object
   cofactor  BIGNUM to which the cofactor is copied
   ctx       BN_CTX object (optional)
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 =item Crypt::OpenSSL::EC::EC_GROUP::set_curve_name($group, $nid);
 
@@ -936,7 +936,7 @@
 
 =item    Crypt::OpenSSL::EC::EC_GROUP::get_point_conversion_form($group);
 
-Retuns the point conversion for for the group
+Returns the point conversion for for the group
 
 =item    Crypt::OpenSSL::EC::EC_GROUP::get0_seed($group);
 
@@ -959,14 +959,14 @@
   q      EC_POINT object with the first factor of the second summand
   m      BIGNUM with the second factor of the second summand
   ctx    BN_CTX object (optional)
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 =item    Crypt::OpenSSL::EC::EC_GROUP::precompute_mult($group, $ctx);
 
 Stores multiples of generator for faster point multiplication
   group  EC_GROUP object
   ctx    BN_CTX object (optional)
-  return 1 on success and 0 if an error occured
+  return 1 on success and 0 if an error occurred
 
 =item    Crypt::OpenSSL::EC::EC_GROUP::have_precompute_mult($group);