mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 23:43:26 +01:00
update changelog, version numbers
git-svn-id: http://encfs.googlecode.com/svn/trunk@63 db9cf616-1c43-0410-9cb8-a902689de0d6
This commit is contained in:
parent
0d24e66ec9
commit
8a404c052f
@ -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>
|
Sun Aug 29 2010 Valient Gough <vgough@pobox.com>
|
||||||
* new IV initialization
|
* new IV initialization
|
||||||
* tag version 1.7
|
* tag version 1.7
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
dnl Process this file with autoconf to produce a configure script.
|
dnl Process this file with autoconf to produce a configure script.
|
||||||
|
|
||||||
AC_INIT(encfs/encfs.h) dnl a source file from your sub dir
|
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
|
AC_CANONICAL_HOST
|
||||||
AM_CONDITIONAL([DARWIN],
|
AM_CONDITIONAL([DARWIN],
|
||||||
|
@ -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
|
// Version 2.0 takes [blockSize - headerSize] worth of user data and writes
|
||||||
// [blockSize] bytes. That way the size going into the crypto engine is
|
// [blockSize] bytes. That way the size going into the crypto engine is
|
||||||
// valid from what was selected based on the crypto module allowed ranges!
|
// 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
|
// The information about MACFileIO currently does not make its way into the
|
||||||
// configuration file, so there is no easy way to make this backward
|
// 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
|
// compatible, except at a high level by checking a revision number for the
|
||||||
// filesystem...
|
// 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)
|
int dataBlockSize(const FSConfigPtr &cfg)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user