R
Richard
I'm looking to do my own basic encryption. I've been tyring to do a
concept such as:
I pass this function the string, key and number of rounds I want to do
the encryption. because im round shifting the bits the decryption
doesn't work..
Am I going about this all wrong or does anybody know an easier way
(besides getting an open source algo class such as Crypto++)
I'm super new to fooling with the bits/encryption
for(;num of rounds
{
char ^ Key;
Round bit shift;
}
concept such as:
I pass this function the string, key and number of rounds I want to do
the encryption. because im round shifting the bits the decryption
doesn't work..
Am I going about this all wrong or does anybody know an easier way
(besides getting an open source algo class such as Crypto++)
I'm super new to fooling with the bits/encryption
for(;num of rounds
{
char ^ Key;
Round bit shift;
}