BestInternetSecurity.net

Information Security Resources

Entries Tagged ‘DES’

XOR and the One-Time Pad

Some of my students have asked why we always use XOR (Exclusive OR) in encrypting plaintext into ciphertext. To answer this question, please take a look first at the output of the various combinations of inputs for XOR function.

Input A
Input B
A XOR B

1
1
0

1
0
1

0
1
1

0
0
0

Suppose we have a plaintext of 1100001111100 and a key of any arbitrary [...]

Leave a Comment

Work Factor : Uncovering keys in cryptosystems

Work Factor is defined as the amount of effort (usually measured in units of time) needed to break a cryptosystem.
The Work Factor of a cryptosystem is related to its key-length and the working mechanism used (encryption and decryption algorithms). For example, if the brute force attack method is used to break the system (trying all [...]

Leave a Comment