blowfish_ecb

Creator: coderz1093

Last updated:

0 purchases

blowfish_ecb Image
blowfish_ecb Images

Languages

Categories

Add to Cart

Description:

blowfish ecb

Blowfish ECB for Dart #





A pure Dart Codec
implementation for the Blowfish ECB
encryption algorithm.
Usage #
The BlowfishECB class fully implements Codec.
The following simple usage is adapted from the included example project:
// Instantiate the codec with a key.
final blowfish = BlowfishECB(key);

// Encrypt the input data.
final encryptedData = blowfish.encode(message);

// Decrypt the encrypted data.
final decryptedData = blowfish.decode(encryptedData);
copied to clipboard
License #
Everything is licenced under the GNU Lesser General Public License v3 or above.
See LICENCE and LICENCE.LESSER for more
information.
Essentially, if this package is modified in your project, the modified package
sources must be released.
Inspiration #
The algorithm implementation was ported over from the
Versile Python implementation.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.