summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/crypto/FNV32a.md
blob: 5c091ebee13d4d9f44bc1094aa3a6dc0e33843f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
title: crypto.FNV32a
description: Returns the FNV (Fowler–Noll–Vo) 32 bit hash of a given string.
categories: []
keywords: []
action:
  aliases: []
  related:
    - functions/crypto/HMAC
    - functions/crypto/MD5
    - functions/crypto/SHA1
    - functions/crypto/SHA256
  returnType: int
  signatures: [crypto.FNV32a STRING]
aliases: [/functions/crypto.fnv32a]
---

This function calculates the 32 bit [FNV1a hash](https://en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo_hash_function#FNV-1a_hash) of a given string according to the [specification](https://datatracker.ietf.org/doc/html/draft-eastlake-fnv-12):

```go-html-template
{{ crypto.FNV32a "Hello world" }} → 1498229191
```