Encryption is the process of transforming information using an algorithm to make it unreadable to anyone except those who has a key.
A common way to Encrypt files in C is by using XOR Encryption
XOR is Logical Operation
1 xor 0 = 1
0 xor 1 = 1
1 xor 1 = 0
0 xor 0 = 0
XOR encryption encodes each bit with a a key provided and the generated output is unreadable without a Key.
A common way to Encrypt files in C is by using XOR Encryption
XOR is Logical Operation
1 xor 0 = 1
0 xor 1 = 1
1 xor 1 = 0
0 xor 0 = 0
XOR encryption encodes each bit with a a key provided and the generated output is unreadable without a Key.
No comments:
Post a Comment