Creating an encoder/encryption class

Subscribe to Creating an encoder/encryption class 5 posts

avatar for RTL_Shadow RTL_Shadow 1023 posts
Flag Post

I want to create my own class with various ways of encoding/encrypting and decoding/decrypting strings and things of the like. Only thing is, I don’t know much about cryptography. Where should I start? Are there any simple algorithms?

 
avatar for qwerberism qwerberism 56 posts
Flag Post

There are already libraries for that, but you can check out the documentation and articles for encryption standards and start implementation from there.

 
avatar for RTL_Shadow RTL_Shadow 1023 posts
Flag Post
Originally posted by qwerberism:

There are already libraries for that, but you can check out the documentation and articles for encryption standards and start implementation from there.

It’s more of a personal challenge. I’m probably practically not going to be using them.

 
avatar for player_03 player_03 1249 posts
Flag Post

I’d start by googling “getting started in cryptography” or “simple encryption function.”

 
avatar for jonathanasdf jonathanasdf 3910 posts
Flag Post

or take some intro class online: https://www.coursera.org/course/crypto http://www.udacity.com/overview/Course/cs387/CourseRev/apr2012

Note that these are classes on cryptography not encryption/encoding, which are almost completely different things (some encryptions use cryptographic principles though). Not quite sure what you wanted since your post talks about both but I couldn’t find any online classes on encryption/encoding…