The code is a concurrent file downloader in Go that splits a file into multiple parts, downloads them in parallel, and assembles the final file, with support for Etag validation to ensure file integrity.
MIT License
1
stars
0
forks
source link
Implement versioning convention for encrypted data format #164
Introduced a versioning convention to the encrypted data format.
Updated encryption and decryption functions to recognize and handle version prefixes.
Ensured backward compatibility for data encrypted with older versions/schemes.
Updated encryption_test.go to align with the new versioning logic.