cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
user name:
password:
Forgot your password?
please wait
try again
cancel
forgot your password?
sign up
log in
[Legacy version]
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Windows Programming
Compressing and Encrypting
Compressing and Encrypting
Jul 14, 2011 at 3:55pm
Jul 14, 2011 at 3:55pm UTC
stfn321
(4)
How can you compress and encrypt any multiple files into one file that is your own format?
Jul 14, 2011 at 5:11pm
Jul 14, 2011 at 5:11pm UTC
closed account (
z05DSL3A
)
Design and implementation.
Jul 14, 2011 at 5:17pm
Jul 14, 2011 at 5:17pm UTC
stfn321
(4)
anything i can read on!.
Jul 14, 2011 at 5:24pm
Jul 14, 2011 at 5:24pm UTC
closed account (
z05DSL3A
)
I would start by reading about something like Zip format.
http://www.pkware.com/support/zip-app-note
Jul 14, 2011 at 5:31pm
Jul 14, 2011 at 5:31pm UTC
stfn321
(4)
Any algorithms i can make notes off -.-
Jul 14, 2011 at 10:06pm
Jul 14, 2011 at 10:06pm UTC
Athar
(4466)
Use an existing algorithm implementation, such as the LZMA algorithm:
http://www.7-zip.org/sdk.html
Then just store the compressed data along with the uncompressed size and any other information you want to keep (name, modification date, hash...) into a file.
Jul 15, 2011 at 7:21pm
Jul 15, 2011 at 7:21pm UTC
stfn321
(4)
Thanks very much :)
Topic archived. No new replies allowed.