1

I would like to make a simple crypting system.
Like when I type in "abc" the system will then type "123".
Should be able to make this as simple as possible, but I'm rather stuck.

I've tried, but I'm not sure how to make it call out "a" and then get "1".

Nagama Inamdar
  • 2,851
  • 22
  • 39
  • 48
  • No, I'm trying to make my own system, I don't want to use an already used system. Just want to know how to call out "a" if I type in "1". Just a simple abc -> 123 system. From there I can try it out myself, and see how far it goes. Should be simple, or atleast it sounds simple, but not sure how to explain it, if this cannot be understood. – Casper Bargisen Mar 23 '15 at 10:46

1 Answers1

1

First of all converting a string to alphanumeric string value is called Data Encryption. Using which you can encrypt and decrypt the data over the network(Generally used for secure data transmission). There various libraries and functions available for respective technological platforms.Such as

  1. Javascript libraries : Crypto js by Google.

  2. You should visit mcrypt_encrypt() & mcrypt_decrypt() for php

Nagama Inamdar
  • 2,851
  • 22
  • 39
  • 48