Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

base512 typo in README.md #3

Open
tv42 opened this issue Nov 6, 2020 · 0 comments
Open

base512 typo in README.md #3

tv42 opened this issue Nov 6, 2020 · 0 comments

Comments

@tv42
Copy link

tv42 commented Nov 6, 2020

The digests map for each file contains the following keys, whose values are the result of applying the named hash function to the file contents:

md5
sha1
sha256
base64sha256
**base512**
base64sha512

That probably meant sha512, and should be listed after sha256.

md5 = md5(local.template_file_contents[p])
sha1 = sha1(local.template_file_contents[p])
sha256 = sha256(local.template_file_contents[p])
sha512 = sha512(local.template_file_contents[p])
base64sha256 = base64sha256(local.template_file_contents[p])
base64sha512 = base64sha512(local.template_file_contents[p])

md5 = filemd5(local.static_file_local_paths[p])
sha1 = filesha1(local.static_file_local_paths[p])
sha256 = filesha256(local.static_file_local_paths[p])
sha512 = filesha512(local.static_file_local_paths[p])
base64sha256 = filebase64sha256(local.static_file_local_paths[p])
base64sha512 = filebase64sha512(local.static_file_local_paths[p])

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant