MSI Factory 2.3

Crypto.Rot13

Crypto.Rot13

This is the first topic This is the last topic  

Crypto.Rot13

This is the first topic This is the last topic  

OverviewExamples

string Crypto.Rot13 (

string Text )

Example 1

-- encrypt the user's name

strName = Dialog.Input("", "What is your name?", "", MB_ICONQUESTION);

 

-- rot13 encrypt the name

strEncrypted = Crypto.Rot13(strName);

Dialog.Message("Your name, rot13 encrypted:",strEncrypted);

 

-- rot13 decrypt the name

strDecrypted = Crypto.Rot13(strEncrypted);

Dialog.Message("And now rot13 decrypted:",strDecrypted);

Encrypts a user name using "rot13", displays it in a dialog message, then rot13 decrypts it and displays it in a dialog message.

See also: Related Actions


Learn More: Indigo Rose Software - MSI Factory - Buy Now - Contact Us