File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 1
- // Copyright 2020 CUE Authors
1
+ // Copyright 2021 CUE Authors
2
2
//
3
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
4
// you may not use this file except in compliance with the License.
11
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
+
15
+ // Package hmac implements the Keyed-Hash Message Authentication Code (HMAC) as
16
+ // defined in U.S. Federal Information Processing Standards Publication 198.
17
+ //
18
+ // An HMAC is a cryptographic hash that uses a key to sign a message.
19
+ // The receiver verifies the hash by recomputing it using the same key.
14
20
package hmac
15
21
16
22
import (
You can’t perform that action at this time.
0 commit comments