Encr_DecodeBase64 |
Decodes a text formatted in Base64 to the original text.
Syntax
Encr_DecodeBase64 ( switches ; text )
Encr_DecodeBase64 |
Decodes a text formatted in Base64 to the original text.
Encr_DecodeBase64 ( switches ; text )
Encr_DecodeSafeAscii |
Decodes a text in the SafeASCII format to the original text.
Encr_DecodeSafeAscii ( switches ; text )
Encr_Decompress |
Decompresses text that was previously compressed.
Encr_Decompress ( switches ; text )
Encr_DecryptAES |
Decrypts text using the AES algorithm and the password.
Encr_DecryptAES ( switches ; password ; text )
Encr_DecryptNewDES |
Decrypts text using a newDES algorithm and the current crypt key. Specify the correct key first with the function Encr_SetCryptKey.
Encr_DecryptNewDES ( switches ; text )
Encr_DeletePasswordFromKeychain |
Deletes a password from the keychain (for this account and/or yourID).
Encr_DeletePasswordFromKeychain ( switches ; account { ; yourID } )
Encr_EncodeBase64 |
Encodes a text to Base64 encoding. The result can be sent safely over internet without any characters being changed. This function formats the output so that it is better readable for email.
Encr_EncodeBase64 ( switches ; text )
Encr_EncodeSafeAscii |
Encodes a text to lower ASCII characters in the range 45…127. The result can be sent safely over internet without any characters being changed. This function formats the output so that it is better readable for email.
Encr_EncodeSafeAscii ( switches ; text )
Encr_EncodeShortSafeAscii |
Encodes a text to Ascii characters in the range 45…127. These characters can be exported as tab separated text and also sent safely over internet.
Encr_EncodeShortSafeAscii ( switches ; text )
Encr_EncryptAES |
Encrypts text using the AES algorithm and the password.
Encr_EncryptAES ( switches ; password ; dataToEncrypt )