mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 02:37:43 -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>
20 lines
706 B
Plaintext
20 lines
706 B
Plaintext
---
|
|
sidebar_label: filesha1
|
|
description: |-
|
|
The filesha1 function computes the SHA1 hash of the contents of
|
|
a given file and encodes it as hex.
|
|
---
|
|
|
|
# `filesha1` Function
|
|
|
|
`filesha1` is a variant of [`sha1`](../../language/functions/sha1.mdx)
|
|
that hashes the contents of a given file rather than a literal string.
|
|
|
|
This is similar to `sha1(file(filename))`, but
|
|
because [`file`](../../language/functions/file.mdx) accepts only UTF-8 text it cannot be used to
|
|
create hashes for binary files.
|
|
|
|
Collision attacks have been successfully performed against this hashing
|
|
function. Before using this function for anything security-sensitive, review
|
|
relevant literature to understand the security implications.
|