Security
mmpc.txt
Associated article: MMPC: An Algorithm for Encrypting Multiple Messages
Tags: Security
Published source code accompanying the article by Jim Shapiro and David Shapiro which implements Ron Rivest's chaffing and package transform. This technique is optimized to minimize memory usage, while making as few passes through the data as possible. Also see MMPC.ZIP.
MMPC: An Algorithm for Encrypting Multiple Messages
by Jim Shapiro and David Shapiro
Example 1:
(a)
for(i = 0, fi_r = fi_p; i < file_count; i++, fi_r++) {
for(j = 0; j < fi_r->data_blocks; j++) {
block_indices_...


