Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libvmod-crypto
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
uplex-varnish
libvmod-crypto
Commits
c58bd1e9
Commit
c58bd1e9
authored
Aug 28, 2018
by
Nils Goroll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
md5_sha1 seems not to exist on all implementations
good it doesn't, I was already wondering about this odd concept
parent
a5655d7d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
4 deletions
+2
-4
README.rst
README.rst
+1
-1
md.c
src/md.c
+0
-1
tbl_md.h
src/tbl_md.h
+0
-1
vmod_crypto.vcc
src/vmod_crypto.vcc
+1
-1
No files found.
README.rst
View file @
c58bd1e9
...
...
@@ -84,7 +84,7 @@ new xverifier = verifier(ENUM digest, STRING key)
::
new xverifier = verifier(
ENUM {md_null, md4, md5,
md5_sha1,
sha1, sha224, sha256, sha384, sha512, ripemd160, rmd160, whirlpool} digest,
ENUM {md_null, md4, md5, sha1, sha224, sha256, sha384, sha512, ripemd160, rmd160, whirlpool} digest,
STRING key
)
...
...
src/md.c
View file @
c58bd1e9
...
...
@@ -45,7 +45,6 @@ md_init (void) {
#endif
#ifndef OPENSSL_NO_MD5
mdtbl
[
md5
]
=
EVP_md5
();
mdtbl
[
md5_sha1
]
=
EVP_md5_sha1
();
#endif
#ifndef OPENSSL_NO_SHA
mdtbl
[
sha1
]
=
EVP_sha1
();
...
...
src/tbl_md.h
View file @
c58bd1e9
VMODENUM
(
md_null
)
VMODENUM
(
md4
)
VMODENUM
(
md5
)
VMODENUM
(
md5_sha1
)
VMODENUM
(
sha1
)
//VMODENUM(dss)
//VMODENUM(dss1)
...
...
src/vmod_crypto.vcc
View file @
c58bd1e9
...
...
@@ -38,7 +38,7 @@ Example
} -start
$Object verifier(ENUM {md_null, md4, md5,
md5_sha1,
sha1, sha224,
$Object verifier(ENUM {md_null, md4, md5, sha1, sha224,
sha256, sha384, sha512, ripemd160, rmd160, whirlpool} digest,
STRING key)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment