910ccdb092
Bumps [github.com/hashicorp/terraform-plugin-sdk/v2](https://github.com/hashicorp/terraform-plugin-sdk) from 2.26.1 to 2.27.0. - [Release notes](https://github.com/hashicorp/terraform-plugin-sdk/releases) - [Changelog](https://github.com/hashicorp/terraform-plugin-sdk/blob/main/CHANGELOG.md) - [Commits](https://github.com/hashicorp/terraform-plugin-sdk/compare/v2.26.1...v2.27.0) --- updated-dependencies: - dependency-name: github.com/hashicorp/terraform-plugin-sdk/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
20 lines
430 B
Go
20 lines
430 B
Go
// Copyright 2014 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build go1.4
|
|
// +build go1.4
|
|
|
|
package sha3
|
|
|
|
import (
|
|
"crypto"
|
|
)
|
|
|
|
func init() {
|
|
crypto.RegisterHash(crypto.SHA3_224, New224)
|
|
crypto.RegisterHash(crypto.SHA3_256, New256)
|
|
crypto.RegisterHash(crypto.SHA3_384, New384)
|
|
crypto.RegisterHash(crypto.SHA3_512, New512)
|
|
}
|