update changelog, version numbers

git-svn-id: http://encfs.googlecode.com/svn/trunk@63 db9cf616-1c43-0410-9cb8-a902689de0d6
This commit is contained in:
Valient Gough 2010-09-06 04:38:57 +00:00
parent 0d24e66ec9
commit 8a404c052f
3 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,10 @@
Sun Sep 5 2010 Valient Gough <vgough@pobox.com>
* fix mount failures when using certain options, due to changes in
option passing mechanism in 1.7
* allow per-block random bytes to be configured independently of
per-block MAC.
* bundle as version 1.7.2
Sun Aug 29 2010 Valient Gough <vgough@pobox.com>
* new IV initialization
* tag version 1.7

View File

@ -1,7 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(encfs/encfs.h) dnl a source file from your sub dir
AM_INIT_AUTOMAKE(encfs, 1.7.1) dnl searches for some needed programs
AM_INIT_AUTOMAKE(encfs, 1.7.2) dnl searches for some needed programs
AC_CANONICAL_HOST
AM_CONDITIONAL([DARWIN],

View File

@ -41,13 +41,14 @@ static RLogChannel *Info = DEF_CHANNEL("info/MACFileIO", Log_Info);
// Version 2.0 takes [blockSize - headerSize] worth of user data and writes
// [blockSize] bytes. That way the size going into the crypto engine is
// valid from what was selected based on the crypto module allowed ranges!
// Version 2.1 allows per-block rand bytes to be used without enabling MAC.
//
// The information about MACFileIO currently does not make its way into the
// configuration file, so there is no easy way to make this backward
// compatible, except at a high level by checking a revision number for the
// filesystem...
//
static rel::Interface MACFileIO_iface("FileIO/MAC", 2, 0, 0);
static rel::Interface MACFileIO_iface("FileIO/MAC", 2, 1, 0);
int dataBlockSize(const FSConfigPtr &cfg)
{