mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-21 18:37:26 +08:00
* v2.1.0 [omit consensus and adjacent] - this commit will be amended with the full release after the file copy is complete * 2.1.0 main node rollup
15 lines
430 B
Go
15 lines
430 B
Go
// -*- go -*-
|
|
//
|
|
// Copyright (c) 2021-2024 Markku Rossi
|
|
//
|
|
// All rights reserved.
|
|
//
|
|
|
|
// Package hmac implements Keyed-Hash Message Authentication Code
|
|
// (HMAC) functions as defined in RFC 2104. All functions take the
|
|
// data that is authenticated and an authentication key.
|
|
//
|
|
// signature := hmac.SumSHA256([]byte("message"), []byte("abc"))
|
|
// => 859cc656e12c0ecd0afdd7e3d034c3ee81609fcac1b454c231211c7ac69895e8
|
|
package hmac
|