Version 0.6 release
Signed-off-by: Dmitry Kasatkin <d.kasatkin@samsung.com>
This commit is contained in:
parent
d7d74e5648
commit
f1ba3e7b45
5
AUTHORS
5
AUTHORS
@ -1,2 +1,5 @@
|
|||||||
Dmitry Kasatkin <dmitry.kasatkin@intel.com>
|
Dmitry Kasatkin <d.kasatkin@samsung.com>
|
||||||
|
|
||||||
|
CONTRIBUTORS:
|
||||||
|
Vivek Goyal <vgoyal@redhat.com>
|
||||||
|
|
||||||
|
10
ChangeLog
10
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>
|
2012-05-18 Dmitry Kasatkin <dmitry.kasatkin@intel.com>
|
||||||
|
|
||||||
version 0.3
|
version 0.3
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
SUBDIRS = src
|
SUBDIRS = src
|
||||||
|
|
||||||
#EXTRA_DIST = LEGAL acinclude.m4 include
|
EXTRA_DIST = autogen.sh
|
||||||
|
|
||||||
ACLOCAL_AMFLAGS = -I m4
|
ACLOCAL_AMFLAGS = -I m4
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# autoconf script
|
# autoconf script
|
||||||
|
|
||||||
AC_PREREQ([2.65])
|
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)
|
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
|
||||||
AC_CONFIG_HEADERS([config.h])
|
AC_CONFIG_HEADERS([config.h])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
@ -30,6 +30,9 @@ AC_SUBST(OPENSSL_LIBS)
|
|||||||
AC_CHECK_HEADER(unistd.h)
|
AC_CHECK_HEADER(unistd.h)
|
||||||
AC_CHECK_HEADERS(openssl/conf.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
|
#debug support - yes for a while
|
||||||
PKG_ARG_ENABLE(debug, "yes", DEBUG, [Enable Debug support])
|
PKG_ARG_ENABLE(debug, "yes", DEBUG, [Enable Debug support])
|
||||||
if test $pkg_cv_enable_debug = yes; then
|
if test $pkg_cv_enable_debug = yes; then
|
||||||
|
@ -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 Nokia Corporation
|
||||||
* Copyright (C) 2011,2012,2013 Intel Corporation
|
* Copyright (C) 2011,2012,2013 Intel Corporation
|
||||||
|
* Copyright (C) 2013 Samsung Electronics
|
||||||
*
|
*
|
||||||
* Authors:
|
* Authors:
|
||||||
* Dmitry Kasatkin <dmitry.kasatkin@nokia.com>
|
* Dmitry Kasatkin <dmitry.kasatkin@nokia.com>
|
||||||
* <dmitry.kasatkin@intel.com>
|
* <dmitry.kasatkin@intel.com>
|
||||||
|
* <d.kasatkin@samsung.com>
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public License
|
* modify it under the terms of the GNU Lesser General Public License
|
||||||
|
Loading…
x
Reference in New Issue
Block a user