Encr_EncryptNewDES |
Encrypts text using a DES algorithm and the current crypt key. Specify a key first with the function Encr_SetCryptKey.
Syntax
Encr_EncryptNewDES ( switches ; text )
Encr_EncryptNewDES |
Encrypts text using a DES algorithm and the current crypt key. Specify a key first with the function Encr_SetCryptKey.
Encr_EncryptNewDES ( switches ; text )
Encr_GeneratePassword |
Generates a random password with the specified length.
Encr_GeneratePassword( switches ; passwordLength )
Encr_GetPasswordFromKeychain |
Gets a password from the keychain (for this account and/or yourID).
Encr_GetPasswordFromKeychain ( switches ; account { ; yourID } )
Encr_MakeDigest |
Generates a MD5 or SHA digest.
Encr_MakeDigest ( switches ; text )
Encr_GetPasswordStrength |
Checks a password for its strength. Returns a positive number (with a value of more than 60 being a good strength)
Encr_GetPasswordStrength( switches ; password)
Encr_NumToBinary |
Converts a number to its binary representation.
Encr_NumToBinary ( switches ; number )
Encr_Rotate13 |
Very simple coding of text. Shifts the character values by 13 to encrypt text stored in a FileMaker field. The field may be decrypted by using Rotate13 again.
Encr_Rotate13 ( switches ; text )
Encr_SavePasswordToKeychain |
Saves a password into the keychain (for this account and/or yourID).
Encr_SavePasswordToKeychain ( switches ; password ; account { ; yourID } )
Encr_SetCryptKey |
Specify which key is used to encrypt and decrypt a text.
Encr_SetCryptKey ( switches ; the_key )
Encr_TextSignature |
Generates a signature of the characters that you can see. This means that only characters a-z, A-Z and 0-9 are used to generate the signature. So adding non-printing characters like spaces and returns doesn’t change the signature.
Encr_TextSignature ( switches ; text )