summaryrefslogtreecommitdiffstats
path: root/tpl/crypto/crypto.go
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/crypto/crypto.go')
-rw-r--r--tpl/crypto/crypto.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/tpl/crypto/crypto.go b/tpl/crypto/crypto.go
index 412a19212..677f59139 100644
--- a/tpl/crypto/crypto.go
+++ b/tpl/crypto/crypto.go
@@ -25,6 +25,7 @@ import (
"hash"
"hash/fnv"
+ "github.com/gohugoio/hugo/common/hugo"
"github.com/spf13/cast"
)
@@ -72,6 +73,7 @@ func (ns *Namespace) SHA256(v any) (string, error) {
// FNV32a hashes v using fnv32a algorithm.
// <docsmeta>{"newIn": "0.98.0" }</docsmeta>
func (ns *Namespace) FNV32a(v any) (int, error) {
+ hugo.Deprecate("crypto.FNV32a", "Use hash.FNV32a.", "v0.129.0")
conv, err := cast.ToStringE(v)
if err != nil {
return 0, err