summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Kasatkin <d.kasatkin@samsung.com>2013-08-28 15:31:35 +0300
committerDmitry Kasatkin <d.kasatkin@samsung.com>2013-08-28 16:37:52 +0300
commitf1ba3e7b45b906233278dd3afa02d12dbcafd989 (patch)
treecd12dcb163018f2c9ca732444f7f25fc3b92cc0f
parentd7d74e5648aea0d551e506c7667f4d283e1c3fe7 (diff)
downloadima-evm-utils-f1ba3e7b45b906233278dd3afa02d12dbcafd989.tar.gz
ima-evm-utils-f1ba3e7b45b906233278dd3afa02d12dbcafd989.tar.bz2
ima-evm-utils-f1ba3e7b45b906233278dd3afa02d12dbcafd989.zip
Version 0.6 releasev0.6
Signed-off-by: Dmitry Kasatkin <d.kasatkin@samsung.com>
-rw-r--r--AUTHORS5
-rw-r--r--ChangeLog10
-rw-r--r--Makefile.am2
-rw-r--r--configure.ac5
-rw-r--r--src/evmctl.c4
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@intel.com>
+Dmitry Kasatkin <d.kasatkin@samsung.com>
+
+CONTRIBUTORS:
+Vivek Goyal <vgoyal@redhat.com>
diff --git a/ChangeLog b/ChangeLog
index ec645e8..79b1e3d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2013-08-28 Dmitry Kasatkin <d.kasatkin@samsung.com>
+
+ 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 <dmitry.kasatkin@intel.com>
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 <dmitry.kasatkin@nokia.com>
* <dmitry.kasatkin@intel.com>
+ * <d.kasatkin@samsung.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License