Commit e6bb4125 authored by Nils Goroll's avatar Nils Goroll

vmodtool-generated docs update

parent 11a3def3
......@@ -21,10 +21,9 @@ digests, checksums and hmacs for the VCL blob type
SYNOPSIS
========
.. parsed-literal::
::
import blobdigest [from "path"] ;
import blobdigest [from "path"]
new xdigest = blobdigest.digest(ENUM hash, BLOB init, ENUM scope)
......@@ -44,8 +43,6 @@ SYNOPSIS
STRING version()
::
new OBJECT = blobdigest.digest(ENUM hash [, BLOB init], ["TASK"|"TOP"])
......@@ -224,11 +221,10 @@ values:
* ``SHA3_384``
* ``SHA3_512``
.. _obj_digest:
digest(...)
-----------
new xdigest = blobdigest.digest(ENUM hash, BLOB init, ENUM scope)
-----------------------------------------------------------------
::
......@@ -324,7 +320,6 @@ Example::
call do_backend_error;
}
.. _func_digest.final:
BLOB xdigest.final()
......@@ -409,10 +404,6 @@ Example::
# Baz-Hash-Base64: base64-encoded SHA3_256 hash of "baz"
# Baz-Hash-Hex: hex-encoded SHA3_256 hash of "bar"
.. _func_hash:
BLOB hash(ENUM hash, BLOB msg)
......@@ -439,7 +430,6 @@ Example::
blobdigest.hash(SHA256,
blob.decode(decoding=BASE64, encoded="Zm9v"));
.. _obj_hmac:
new xhmac = blobdigest.hmac(ENUM hash, BLOB key)
......@@ -489,7 +479,6 @@ Example::
return(synth(401));
}
.. _func_hmac.hmac_bench:
DURATION xhmac.hmac_bench(INT n, BLOB msg)
......@@ -497,10 +486,6 @@ DURATION xhmac.hmac_bench(INT n, BLOB msg)
Run `n` rounds of ``.hmac`` and return the net total duration.
.. _func_hmacf:
BLOB hmacf(ENUM hash, BLOB key, BLOB msg)
......@@ -540,7 +525,6 @@ Example::
blob.decode(encoded=
req.http.Msg)));
.. _func_version:
STRING version()
......@@ -607,7 +591,6 @@ SEE ALSO
* https://github.com/rhash/RHash
* http://rhash.anz.ru/
COPYRIGHT
=========
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment