bpo-32713: Fix tarfile.itn for large/negative float values. (GH-5434)
[python-delta-tar] / deltatar /
2018-04-02 Philipp Gesanguse independent decryption contexts for backup files
2018-04-02 Philipp Gesangclean up multi-index handling
2018-04-02 Philipp Gesangproperly handle encryption and compression of empty...
2018-04-02 Philipp Gesangremove redundant test
2018-04-02 Philipp Gesangencode operation modes
2018-04-02 Philipp Gesangcleanly perform block transition in non-concat mode
2018-04-02 Philipp Gesangclarify exception-driven control flow
2018-04-02 Philipp Gesangremove unused state variable
2018-04-02 Philipp Gesangfix multivol compression handling
2018-04-02 Philipp Gesanghandle uncompressed, encrypted archives with tarfile
2018-04-02 Philipp Gesangsync on .close() for unencrypted archives
2018-04-02 Philipp Gesangproperly (re-) initialize compressor at archive / volum...
2018-04-02 Philipp Gesangkeep separate encryptor and decryptor contexts in delta...
2018-04-02 Philipp Gesangproperly restart compression when encrypting
2018-04-02 Philipp Gesanguse crypto.py to split test archive in test_encryption.py
2018-04-02 Philipp Gesangimplement passthrough mode in crypto.py
2018-04-02 Philipp Gesangimplement split mode for CLI encryption
2018-04-02 Philipp Gesangexplicitly disable gz initalization for _Stream’s used...
2018-04-02 Philipp Gesangfix decompression error handling
2018-04-02 Philipp Gesangfix index file encryption handling
2018-04-02 Philipp Gesangpermit setting crypto.py parameter version via deltatar...
2018-04-02 Philipp Gesangeliminate the last traces of encryption “modes”
2018-04-02 Philipp Gesanginitialize compression globally for non-“concat” archives
2018-04-02 Philipp Gesangpass encryption context to deltatar volume handlers
2018-04-02 Philipp Gesangrework encryption unittests
2018-04-02 Philipp Gesangfix compression handling on volume bounds
2018-04-02 Philipp Gesangadd strict IV validation to decryption handler
2018-04-02 Philipp Gesangimprove error handling in crypto handler
2018-04-02 Philipp Gesangremove obsolete block size check
2018-04-02 Philipp Gesangfix fallout from EOF changes in CLI decryptor
2018-04-02 Philipp Gesangthrow error on partial header reading stream
2018-04-02 Philipp Gesangcommunicate remainder to caller when hitting EOF from...
2018-04-02 Philipp Gesangstrip extraneous parameters from decryption handler...
2018-04-02 Philipp Gesangadd input checks at API boundaries
2018-04-02 Philipp Gesangdocument exceptions used in encryption handler
2018-04-02 Philipp Gesanguse exception to communicate tag mismatch
2018-04-02 Philipp Gesangunify error and parameter handling in crypto.py
2018-04-02 Philipp Gesangremove obsolete tag handling functionality from crypto.py
2018-04-02 Philipp Gesangfix search string in tar volume generation
2018-04-02 Philipp Gesanguse OSError instead of IOError
2018-04-02 Philipp Gesangspecify salt and version in ctor when encrypting
2018-04-02 Philipp Gesangincrement file counter after handling current object
2018-04-02 Philipp Gesangfix IV fixed part validation on decryption
2018-04-02 Philipp Gesangparse buffer as header if passed as arg to next()
2018-04-02 Philipp Gesangprefer symbolic constants over literals referring to...
2018-04-02 Philipp Gesangfix tarfile crypto parameter passing
2018-04-02 Philipp Gesangaccept external counter in crypto.py
2018-04-02 Philipp Gesangunify constant naming I2N_→PDTCRYPT_
2018-04-02 Philipp Gesangunify file extension handling
2018-04-02 Philipp Gesangcatch ESPIPE from ftell () on stream
2018-04-02 Philipp Gesangimprove parameter handling of crypto.py
2018-04-02 Philipp Gesangallow decryption from std{in,out} via crypto.py
2018-04-02 Philipp Gesanghandle zlib correctly
2018-04-02 Philipp Gesangdelay index file write until backup is complete
2018-04-02 Philipp Gesangfix file offset calculation
2018-04-02 Philipp Gesangadd simple decryption routine to crypto.py
2018-04-02 Philipp Gesangrename open_index to open_auxiliary_file
2018-04-02 Philipp Gesangprevent the empty string as password
2018-04-02 Philipp Gesangpass encryption context to tarfile
2018-04-02 Philipp Gesangdo not require parameter version with each encrypted...
2018-04-02 Philipp Gesangfirst draft for making the encryption layer independent
2018-04-02 Philipp Gesangchange extension for encrypted files
2018-04-02 Philipp Gesangreturn collected fixed iv parts from .close() when...
2018-04-02 Philipp Gesangautomate iv fixed-part generation
2018-04-02 Philipp Gesangproperly enter/leave encryption sections
2018-04-02 Philipp Gesangexplicitly constuct zlib headers
2018-04-02 Philipp Gesangunify zlib initialization
2018-04-02 Philipp Gesangapply compression if compressor is present
2018-04-02 Philipp Gesangoverhaul pre- and post-crypto sync
2018-04-02 Philipp Gesangimplement encryption passthrough mode
2018-04-02 Philipp Gesangunify common operations between encryption and decryption
2018-04-02 Philipp Gesangadjust versioned encryption parameters
2018-04-02 Philipp Gesangextend open_index() API for info file handling
2018-04-02 Philipp Gesangstart payload encryption counter at 2
2018-04-02 Philipp Gesangtrack encryption state
2018-04-02 Philipp Gesangreinit crypto for objects other than files
2018-04-02 Philipp Gesangtrack data handled in crypto
2018-04-02 Philipp Gesangfirst draft of revised encryption layer
2018-04-02 Philipp Gesangsimplify password save and retrieval
2018-04-02 Philipp Gesangimplement null-kdf to speed up testing
2018-04-02 Philipp Gesangadapt tag handling in decryption
2018-04-02 Philipp Gesangfix encrypted read logic for begin/end at entry boundaries
2018-04-02 Philipp Gesangretrieve and save GCM tag from object header
2018-04-02 Philipp Gesangdelay kdf until parameters are available from header
2018-04-02 Philipp Gesangmove ct length bookkeeping into encryptor
2018-04-02 Philipp Gesangmove tag back into the header
2018-04-02 Philipp Gesanginitially write dummy header during encryption
2018-04-02 Philipp Gesangcreate crypto header in .next()
2018-04-02 Philipp Gesangredo transition between objects in crypto layer
2018-04-02 Philipp Gesangpass salt between index and archive
2018-04-02 Philipp Gesangrevise crypto context interface
2018-04-02 Philipp Gesangredo stream decryption
2018-04-02 Philipp Gesangsupersede encryption type by encryption parameters
2018-04-02 Philipp Gesanginclude offending mode string in exception
2018-04-02 Philipp Gesangensure octal format is fed an integer
2018-04-02 Philipp Gesanghandle reading and formatting of tags
2018-04-02 Philipp Gesangunit test crypto handling of data spanning multiple...
2018-04-02 Philipp Gesangunit test header handling
2018-04-02 Philipp Gesangadd basic wrapper for GCM handling with python-cryptography
2018-04-02 Philipp Gesangremove key length parameter wherever feasible
next