pxar: remove flag to change digest algorithm

The flag CA_FORMAT_SHA512_256 is used to switch between sha512 and sha256 to
calculate digest in casync.

As we use sha256, we can get rid of this flag for now.

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
This commit is contained in:
Christian Ebner 2019-08-02 17:43:25 +02:00 committed by Dietmar Maurer
parent 4d142ea79e
commit 4ea0f7d95b

View File

@ -67,8 +67,6 @@ pub const WITH_QUOTA_PROJID: u64 = 0x100000000;
/// Support ".pxarexclude" files /// Support ".pxarexclude" files
pub const EXCLUDE_FILE: u64 = 0x1000000000000000; pub const EXCLUDE_FILE: u64 = 0x1000000000000000;
/// the purpose of this flag is still unclear
pub const SHA512_256: u64 = 0x2000000000000000;
/// Exclude submounts /// Exclude submounts
pub const EXCLUDE_SUBMOUNTS: u64 = 0x4000000000000000; pub const EXCLUDE_SUBMOUNTS: u64 = 0x4000000000000000;
/// Exclude entries with chattr flag NODUMP /// Exclude entries with chattr flag NODUMP
@ -137,8 +135,7 @@ pub const DEFAULT: u64 =
WITH_FCAPS| WITH_FCAPS|
WITH_QUOTA_PROJID| WITH_QUOTA_PROJID|
EXCLUDE_NODUMP| EXCLUDE_NODUMP|
EXCLUDE_FILE| EXCLUDE_FILE;
SHA512_256;
// form /usr/include/linux/fs.h // form /usr/include/linux/fs.h
const FS_APPEND_FL: u32 = 0x00000020; const FS_APPEND_FL: u32 = 0x00000020;