Bump version to 0.9.0.
Update Changelog.
This commit is contained in:
parent
315bb50264
commit
189d32ea52
2 changed files with 13 additions and 1 deletions
12
Changelog
12
Changelog
|
@ -1,3 +1,15 @@
|
|||
== 0.9.0 Major Release ==
|
||||
Implement HMAC verification for chunk header.
|
||||
Do not ask for decryption passwd twice.
|
||||
Refactor crypto utility functions in a separate file.
|
||||
Add HMAC verification for file header.
|
||||
Add a few extra input validation checks.
|
||||
Include space in chunk header for HMAC.
|
||||
Support for chunk-level encryption using AES and Scrypt based PBE.
|
||||
Couple of minor fixes.
|
||||
Incorporate SSE/AVX optimized Intel SHA-256 implementation.
|
||||
Add support for runtime cpuid detection.
|
||||
Add support for SHA256 and SHA512 digests from OpenSSL library.
|
||||
== 0.8.6 Update Release ==
|
||||
Fix polynomial computation.
|
||||
Fix incorrect block length when doing fixed-block dedupe.
|
||||
|
|
|
@ -42,7 +42,7 @@ extern "C" {
|
|||
#define FLAG_DEDUP 1
|
||||
#define FLAG_DEDUP_FIXED 2
|
||||
#define FLAG_SINGLE_CHUNK 4
|
||||
#define UTILITY_VERSION "0.8.6"
|
||||
#define UTILITY_VERSION "0.9.0"
|
||||
#define MASK_CRYPTO_ALG 0x30
|
||||
#define MAX_LEVEL 14
|
||||
|
||||
|
|
Loading…
Reference in a new issue