Decrypt
From UBot Studio
(Difference between revisions)
(Created page with " This function is an Encryption function in the UBot Extended Library. This function decrypts base64: takes a stream of characters and converts them to characters that ...") |
|||
Line 1: | Line 1: | ||
− | This function is an [[Encryption]] function in the UBot Extended Library. This function decrypts | + | This function is an [[Encryption]] function in the UBot Extended Library. This function decrypts an encrypted base64 value. |
Latest revision as of 15:15, 26 June 2015
This function is an Encryption function in the UBot Extended Library. This function decrypts an encrypted base64 value.
base64: takes a stream of characters and converts them to characters that belong to the universal ASCII character set.What is Base 64 Encoded Data?
Value to Decrypt: The value being decrypting. (the value PeanutButter in the encrypted variable #testvalue)
Cryptography Algorithm: The method by which the value will be hashed.
[edit] Example
set(#testvalue,$encrypt("PeanutButter","base64"),"Global") alert($decrypt(#testvalue,"base64"))
The alert command runs with the results of decrypting the encrypted string "Peanut Butter" from the base64 encoded data of "UGVhbnV0QnV0dGVy" to ASCII text.