Hey,

Where can I find tutorials on understanding encryption and programming applications for encryption ? Like, creating encrytpion algos, etc etc ...

Just wanna know to see if I can create my own encrytpion !!
Posted on 2002-05-07 10:55:19 by Dracton
There is free book on the net called "book of applied cryptography" or something like that...

Google will help you to find it...
Posted on 2002-05-07 11:05:05 by JCP
Posted on 2002-05-07 11:19:35 by ante
Thank you,

Thanks guys ... :) ... I'll be writing 99999999 bit encryption in no time ;D
Posted on 2002-05-07 13:39:43 by Dracton
This is something that interests me as well but could never understand the math
Posted on 2002-05-07 22:51:45 by Kudos
XOR encryption rules!
Posted on 2002-05-08 02:06:51 by AmkG
XOR Encryption does indeed do the job well :) ... but I'm looking to create my own oneway-encryption to be used for user logins etc etc ...
Posted on 2002-05-09 10:22:15 by Dracton

XOR Encryption does indeed do the job well :) ... but I'm looking to create my own oneway-encryption to be used for user logins etc etc ...
Oneway, huh?
    mov eax, PASSWORD

@@: add al, [edi]
mov [edi], al
ror eax, 7
inc edi
dec ecx
jne @B
No body will be able to reserve that. :tongue:
Posted on 2002-05-09 10:36:54 by bitRAKE