From fde2f616594dcbbdce128806973bbef2e039e761 Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Fri, 11 Feb 2011 08:53:10 +0100 Subject: [PATCH] minor updates for release --- Makefile | 2 +- NEWS | 2 +- examples/hashcrypt_speed.c | 2 +- examples/sha_speed.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index d5bb649..0ffd466 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ KERNEL_DIR = /lib/modules/$(shell uname -r)/build -VERSION = 0.8 +VERSION = 0.9 cryptodev-objs = cryptodev_main.o cryptodev_cipher.o diff --git a/NEWS b/NEWS index b90554f..2d78c23 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -Version 0.9 (unreleased) +Version 0.9 (released 2011-02-11) * Added additional test tools: - sha_speed does performance testing of SHA1 and SHA256 diff --git a/examples/hashcrypt_speed.c b/examples/hashcrypt_speed.c index 203a8dd..02924b5 100644 --- a/examples/hashcrypt_speed.c +++ b/examples/hashcrypt_speed.c @@ -167,7 +167,7 @@ int main(void) #endif for (i = 256; i <= (64 * 4096); i *= 2) { - if (hash_data(&sess, fdc, i, sess.alignmask)) + if (hash_data(&sess, fdc, i, siop.alignmask)) break; } diff --git a/examples/sha_speed.c b/examples/sha_speed.c index 278509a..db7f5e1 100644 --- a/examples/sha_speed.c +++ b/examples/sha_speed.c @@ -163,7 +163,7 @@ int main(void) #endif for (i = 256; i <= (64 * 4096); i *= 2) { - if (hash_data(&sess, fdc, i, sess.alignmask)) + if (hash_data(&sess, fdc, i, siop.alignmask)) break; } -- 2.11.4.GIT