From ea867378100acaa01291696ba6047b7ea766839e Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 5 Dec 2024 15:44:26 -0800 Subject: [PATCH] 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 LUCI-TryBot-Result: Go LUCI Reviewed-by: Ian Lance Taylor Auto-Submit: Ian Lance Taylor Auto-Submit: Ian Lance Taylor --- src/crypto/hkdf/hkdf.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/crypto/hkdf/hkdf.go b/src/crypto/hkdf/hkdf.go index f4f441af04..7cfbe2c60d 100644 --- a/src/crypto/hkdf/hkdf.go +++ b/src/crypto/hkdf/hkdf.go @@ -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 ( -- 2.48.1