Skip to content

Commit ea86737

Browse files
ianlancetaylorgopherbot
authored andcommitted
crypto/hkdf: add package doc comment
For #61477 Change-Id: I3d3ebf573a21f1f56edfffb3fea53c0b5cbfccd8 Reviewed-on: https://go-review.googlesource.com/c/go/+/634095 Reviewed-by: Roland Shoemaker <roland@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@golang.org> Auto-Submit: Ian Lance Taylor <iant@google.com>
1 parent 9d82738 commit ea86737

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/crypto/hkdf/hkdf.go

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
// Package hkdf implements the HMAC-based Extract-and-Expand Key Derivation
6+
// Function (HKDF) as defined in RFC 5869.
7+
//
8+
// HKDF is a cryptographic key derivation function (KDF) with the goal of
9+
// expanding limited input keying material into one or more cryptographically
10+
// strong secret keys.
511
package hkdf
612

713
import (

0 commit comments

Comments
 (0)