From: Ian Lance Taylor Date: Thu, 5 Dec 2024 23:44:26 +0000 (-0800) Subject: crypto/hkdf: add package doc comment X-Git-Tag: go1.24rc1~16 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ea867378100acaa01291696ba6047b7ea766839e;p=gostls13.git 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 --- 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 (