From 83290e403bf9c93e4480c6bf91a64b070c69f332 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Thu, 26 Oct 2017 17:21:07 +1100 Subject: OpenSSL now supports more digest<=>key combinations. Remove incorrect examples --- examples/vrfy.sig | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'examples') diff --git a/examples/vrfy.sig b/examples/vrfy.sig index 84bcfcc..123611e 100755 --- a/examples/vrfy.sig +++ b/examples/vrfy.sig @@ -3,7 +3,7 @@ -- Example public-key signature verification. -- -local keytype = ... +local keytype, hash = ... local openssl = require"openssl" local pkey = require"openssl.pkey" @@ -23,10 +23,11 @@ local function genkey(type) end local key = genkey(keytype) -local hash = key:getDefaultDigestName() +if hash == nil then + hash = key:getDefaultDigestName() +end --- digest our message using an appropriate digest ("ecdsa-with-SHA1" for EC; --- "dss1" for DSA; and "sha1", "sha256", etc for RSA). +-- digest our message using an appropriate digest local data = digest.new(hash) data:update(... or "hello world") -- cgit v1.2.3-59-g8ed1b