File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 4
4
5
5
// Package acme provides an implementation of the
6
6
// Automatic Certificate Management Environment (ACME) spec.
7
- // The intial implementation was based on ACME draft-02 and
7
+ // The initial implementation was based on ACME draft-02 and
8
8
// is now being extended to comply with RFC 8555.
9
9
// See https://tools.ietf.org/html/draft-ietf-acme-acme-02
10
10
// and https://tools.ietf.org/html/rfc8555 for details.
Original file line number Diff line number Diff line change 18
18
// value. These limbs are, for the most part, zero extended and
19
19
// placed into 64 -bit vector register elements. Each vector
20
20
// register is 128 -bits wide and so holds 2 of these elements.
21
- // Using 26 -bit limbs allows us plenty of headroom to accomodate
21
+ // Using 26 -bit limbs allows us plenty of headroom to accommodate
22
22
// accumulations before and after multiplication without
23
23
// overflowing either 32 -bits (before multiplication) or 64 -bits
24
24
// (after multiplication).
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ func TestRsaPss(t *testing.T) {
104
104
}
105
105
106
106
// filesOverrideToPassZeroSLen is a map of all test files
107
- // and which TcIds that should be overriden to pass if the
107
+ // and which TcIds that should be overridden to pass if the
108
108
// rsa.PSSOptions.SaltLength is zero.
109
109
// These tests expect a failure with a PSSOptions.SaltLength: 0
110
110
// and a signature that uses a different salt length. However,
You can’t perform that action at this time.
0 commit comments