mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 10:47:34 -05:00
Signed-off-by: Janos <86970079+janosdebugs@users.noreply.github.com> Signed-off-by: Damian Stasik <920747+damianstasik@users.noreply.github.com> Signed-off-by: Roman Grinovski <roman.grinovski@gmail.com> Co-authored-by: Damian Stasik <920747+damianstasik@users.noreply.github.com> Co-authored-by: Roman Grinovski <roman.grinovski@gmail.com>
30 lines
985 B
Plaintext
30 lines
985 B
Plaintext
---
|
|
sidebar_label: sha512
|
|
description: |-
|
|
The sha512 function computes the SHA512 hash of a given string and encodes it
|
|
with hexadecimal digits.
|
|
---
|
|
|
|
# `sha512` Function
|
|
|
|
`sha512` computes the SHA512 hash of a given string and encodes it with
|
|
hexadecimal digits.
|
|
|
|
The given string is first encoded as UTF-8 and then the SHA512 algorithm is applied
|
|
as defined in [RFC 4634](https://tools.ietf.org/html/rfc4634). The raw hash is
|
|
then encoded to lowercase hexadecimal digits before returning.
|
|
|
|
## Examples
|
|
|
|
```
|
|
> sha512("hello world")
|
|
309ecc489c12d6eb4cc40f50c902f2b4d0ed77ee511a7c7a9bcd3ca86d4cd86f989dd35bc5ff499670da34255b45b0cfd830e81f605dcf7dc5542e93ae9cd76f
|
|
```
|
|
|
|
## Related Functions
|
|
|
|
* [`filesha512`](../../language/functions/filesha512.mdx) calculates the same hash from
|
|
the contents of a file rather than from a string value.
|
|
* [`base64sha512`](../../language/functions/base64sha512.mdx) calculates the same hash but returns
|
|
the result in a more-compact Base64 encoding.
|