Topics   All   MacOS (Only)   Windows (Only)   Linux (Only, Not)   iOS (Only, Not)  
Components   Crossplatform Mac & Win   Server   Client   Old   Deprecated   Guides   Examples   Videos
New in version: 10.1   10.2   10.3   10.4   10.5   11.0   11.1   11.2   11.3   11.4    Statistic    FMM    Blog  

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

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


Encryption.EncryptAES - Encryption.EncryptContainerAES

Feedback: Report problem or ask question.