Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

Encryption.EncryptBlowfish

Decrypts data with Blowfish engine in CFB64 mode.

Component Version macOS Windows Linux Server iOS SDK
Encryption 2.7 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes

Deprecated

This function was deprecated. Use Encryption.Cipher instead.

MBS( "Encryption.EncryptBlowfish"; key; text { ; iv } )   More

Parameters

Parameter Description Example Flags
key The key you want to use. "Hello"
text The text to encrypt. "Hello World"
iv The initial vector as a text with up to 16 bytes length. "1234567890ABCDEF" Optional

Result

Returns encrypted text encoded as hex.

Description

Decrypts data with Blowfish engine in CFB64 mode.
This function uses UTF-8 for key, text and iv parameters.
For blowfish the key length is limited to 72 characters.
Deprecated. Please move to Encryption.Cipher for new projects.

Examples

Simply encrypt a text:

MBS( "Encryption.EncryptBlowfish"; $key; $text )

See also

Example Databases

Blog Entries

This function checks for a license.

Created 18th August 2014, last changed 12nd June 2020


Encryption.EncryptAES - Encryption.EncryptContainerAES