sb/sha512-base64: Add script to generate a base64 checksum.

- Use this command to get a smaller sha512 checksum
This commit is contained in:
Chris Johns
2020-03-30 10:47:18 +11:00
parent fe63ad8777
commit 92d8e7f51f

2
source-builder/sha512-base64 Executable file
View File

@@ -0,0 +1,2 @@
#! /bin/sh
openssl dgst -binary -sha512 $1 | openssl base64 | sed '{N;s/\n//;}'