[openssl] master update

Dr. Paul Dale pauli at openssl.org
Thu Apr 8 12:57:43 UTC 2021


The branch master has been updated
       via  987a66a6fcf3dffa987896551cb94de66f38cdea (commit)
      from  2f8fca79a1cdffb6fadf49ff65769e417509f089 (commit)


- Log -----------------------------------------------------------------
commit 987a66a6fcf3dffa987896551cb94de66f38cdea
Author: Pauli <pauli at openssl.org>
Date:   Wed Apr 7 12:48:14 2021 +1000

    apps: fix Camellia CBC performance loop
    
    Reviewed-by: Tomas Mraz <tomas at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/14786)

-----------------------------------------------------------------------

Summary of changes:
 apps/speed.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/speed.c b/apps/speed.c
index 3cb93ecf12..56c896c31e 100644
--- a/apps/speed.c
+++ b/apps/speed.c
@@ -2114,7 +2114,7 @@ int speed_main(int argc, char **argv)
         if (doit[algindex]) {
             int st = 1;
 
-            keylen = 16 + i * 8;
+            keylen = 16 + k * 8;
             for (i = 0; st && i < loopargs_len; i++) {
                 loopargs[i].ctx = init_evp_cipher_ctx(names[algindex],
                                                       key32, keylen);


More information about the openssl-commits mailing list