From aa25aeddc01f75e37b169a1a3f019ac5201c3c4f Mon Sep 17 00:00:00 2001 From: fdopen Date: Tue, 9 May 2017 22:10:13 +0200 Subject: [PATCH] test: newer gpg versions support sha3 --- src/extrun.ml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/extrun.ml b/src/extrun.ml index 1776e15..1c17af2 100644 --- a/src/extrun.ml +++ b/src/extrun.ml @@ -361,6 +361,10 @@ module Gpg = struct ["--no-tty";"--batch";"--print-md";"sha256"],sha256; ["--no-tty";"--batch";"--print-md";"sha384"],sha384; ["--no-tty";"--batch";"--print-md";"sha512"],sha512; + ["--no-tty";"--batch";"--print-md";"sha3-224"],sha3_224; + ["--no-tty";"--batch";"--print-md";"sha3-256"],sha3_256; + ["--no-tty";"--batch";"--print-md";"sha3-384"],sha3_384; + ["--no-tty";"--batch";"--print-md";"sha3-512"],sha3_512; ] end