]> Cypherpunks repositories - gostls13.git/commitdiff
crypto/hkdf: add package doc comment
authorIan Lance Taylor <iant@golang.org>
Thu, 5 Dec 2024 23:44:26 +0000 (15:44 -0800)
committerGopher Robot <gobot@golang.org>
Fri, 6 Dec 2024 00:07:47 +0000 (00:07 +0000)
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>

src/crypto/hkdf/hkdf.go

index f4f441af0423525738dd8f510b05d4242273ef22..7cfbe2c60de3568e1cc7545080dcdbe4843780ce 100644 (file)
@@ -2,6 +2,12 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
+// Package hkdf implements the HMAC-based Extract-and-Expand Key Derivation
+// Function (HKDF) as defined in RFC 5869.
+//
+// HKDF is a cryptographic key derivation function (KDF) with the goal of
+// expanding limited input keying material into one or more cryptographically
+// strong secret keys.
 package hkdf
 
 import (