diff --git a/index.html b/index.html index d5c3c47..b688181 100644 --- a/index.html +++ b/index.html @@ -98,7 +98,7 @@
secretbase
offers the functions: sha3()
for objects and sha3sum()
for files.
secretbase
offers the functions: sha3()
for objects and sha3file()
for files.
To use:
224
, 256
, 384
or 512
@@ -133,11 +133,11 @@ Hash files:
file <- tempfile(); cat("secret base", file = file)
-sha3sum(file)
+sha3file(file)
#> [1] "a721d57570e7ce366adee2fccbe9770723c6e3622549c31c7cab9dbb4a795520"
Hash to integer:
secretbase: Cryptographic Hash and Extendable-Output Functions
Cryptographic Hashing Using the SHA-3 Algorithm
sha3(x, bits = 256L, convert = TRUE)
-sha3sum(file, bits = 256L, convert = TRUE)