2023-03-15 16:00:52 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2019-02-06 02:01:18 +00:00
|
|
|
package cryptoutil
|
|
|
|
|
|
|
|
import "testing"
|
|
|
|
|
|
|
|
func TestBlake2b256Hash(t *testing.T) {
|
|
|
|
hashVal := Blake2b256Hash("sampletext")
|
|
|
|
|
|
|
|
if string(hashVal) == "" || string(hashVal) == "sampletext" {
|
|
|
|
t.Fatalf("failed to hash the text")
|
|
|
|
}
|
|
|
|
}
|