From f1ba3e7b45b906233278dd3afa02d12dbcafd989 Mon Sep 17 00:00:00 2001 From: Dmitry Kasatkin Date: Wed, 28 Aug 2013 15:31:35 +0300 Subject: [PATCH] Version 0.6 release Signed-off-by: Dmitry Kasatkin --- AUTHORS | 5 ++++- ChangeLog | 10 ++++++++++ Makefile.am | 2 +- configure.ac | 5 ++++- src/evmctl.c | 4 +++- 5 files changed, 22 insertions(+), 4 deletions(-) diff --git a/AUTHORS b/AUTHORS index 471b05a..3a0e428 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,2 +1,5 @@ -Dmitry Kasatkin +Dmitry Kasatkin + +CONTRIBUTORS: +Vivek Goyal diff --git a/ChangeLog b/ChangeLog index ec645e8..79b1e3d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2013-08-28 Dmitry Kasatkin + + version 0.6 + * support for asymmetric crypto keys and new signature format (v2) + * fixes to set correct hash algo for digital signature v1 + * uuid support for EVM + * signature verification support + * test scripts removed + * README updates + 2012-05-18 Dmitry Kasatkin version 0.3 diff --git a/Makefile.am b/Makefile.am index 637f361..73d3a4d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ SUBDIRS = src -#EXTRA_DIST = LEGAL acinclude.m4 include +EXTRA_DIST = autogen.sh ACLOCAL_AMFLAGS = -I m4 diff --git a/configure.ac b/configure.ac index 48d7edc..5decc4f 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # autoconf script AC_PREREQ([2.65]) -AC_INIT(ima-evm-utils, 0.3, dmitry.kasatkin@intel.com) +AC_INIT(ima-evm-utils, 0.6, d.kasatkin@samsung.com) AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) @@ -30,6 +30,9 @@ AC_SUBST(OPENSSL_LIBS) AC_CHECK_HEADER(unistd.h) AC_CHECK_HEADERS(openssl/conf.h) +AC_CHECK_HEADERS(attr/xattr.h, , [AC_MSG_ERROR([attr/xattr.h header not found. You need the libattr development package.])]) +AC_CHECK_HEADERS(keyutils.h, , [AC_MSG_ERROR([keyutils.h header not found. You need the libkeyutils development package.])]) + #debug support - yes for a while PKG_ARG_ENABLE(debug, "yes", DEBUG, [Enable Debug support]) if test $pkg_cv_enable_debug = yes; then diff --git a/src/evmctl.c b/src/evmctl.c index 402a104..2798179 100644 --- a/src/evmctl.c +++ b/src/evmctl.c @@ -1,12 +1,14 @@ /* - * evm-utils - IMA/EVM support utilities + * ima-evm-utils - IMA/EVM support utilities * * Copyright (C) 2011 Nokia Corporation * Copyright (C) 2011,2012,2013 Intel Corporation + * Copyright (C) 2013 Samsung Electronics * * Authors: * Dmitry Kasatkin * + * * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License