Jump to content

Encryption Algorithm Developing


Recommended Posts

Hi Guys! I've got some questions to ask you. I'm currently working at an Encryption tool. I've already made up the UI Interface. Can you give me some theory about how to create a new encryption algorithm that is different from the encryption alghoritms we find in the UDFs?

I need the basic of the encryption algorithms creation.

Thanks in advance!

Link to comment
Share on other sites

Google is your friend.  I'd recommend researching how some of today's encryption standards work to give you an idea of what "it's going to take".  Also, I feel obligated to mention that developing a solid encryption scheme is no trivial task.  There is a lot of math involved and it takes care and diligence to design a robust encryption algo (minimal collisions, key strength, crypt analysis protection).  Additionally, AutoIt, being an interpreted language, will have significant performance issues compared to a compiled "closer to the die" language like ASM, C or C++.

I don't mean to discourage...it's just a very big task that usually takes teams of developers to do it right.  As far as learning about existing algos and how hey work, Wiki is a good place to start.  I also really like this flash animation that visualizes the AES encryption process: http://www.formaestudio.com/rijndaelinspector/archivos/Rijndael_Animation_v4_eng.swf

 

Good Luck!
 

Link to comment
Share on other sites

  • 1 month later...

Google is your friend.  I'd recommend researching how some of today's encryption standards work to give you an idea of what "it's going to take".  Also, I feel obligated to mention that developing a solid encryption scheme is no trivial task.  There is a lot of math involved and it takes care and diligence to design a robust encryption algo (minimal collisions, key strength, crypt analysis protection).  Additionally, AutoIt, being an interpreted language, will have significant performance issues compared to a compiled "closer to the die" language like ASM, C or C++.

I don't mean to discourage...it's just a very big task that usually takes teams of developers to do it right.  As far as learning about existing algos and how hey work, Wiki is a good place to start.  I also really like this flash animation that visualizes the AES encryption process: http://www.formaestudio.com/rijndaelinspector/archivos/Rijndael_Animation_v4_eng.swf

 

Good Luck!
 

thanks!

Link to comment
Share on other sites

If you want to look at a tool that has been created using AutoIt (not the encryption algorithm) just to see a structure or to go off from it, you can always look at my Short-Order Encrypter tool in my signature. ^_^

P.S - here is an older example of someone on the AutoIt forum creating an encryption algorithm.

Edited by MikahS
example

Snips & Scripts


My Snips: graphCPUTemp ~ getENVvars
My Scripts: Short-Order Encrypter - message and file encryption V1.6.1 ~ AuPad - Notepad written entirely in AutoIt V1.9.4

Feel free to use any of my code for your own use.                                                                                                                                                           Forum FAQ

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...