BlowfishECB class

A Blowfish ECB Codec implementation.

Inheritance

Constructors

BlowfishECB(Uint8List key)
Creates an instance of the codec initialized with the given key.

Properties

decoder Converter<List<int>, Uint8List>
A Converter that decrypts data.
no setteroverride
encoder Converter<List<int>, Uint8List>
A Converter that encrypts data.
no setteroverride
hashCode int
The hash code for this object.
no setterinherited
inverted Codec<List<int>, List<int>>
Inverts this.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

decode(List<int> encoded) List<int>
Decodes encoded data.
inherited
encode(List<int> input) List<int>
Encodes input.
inherited
fuse<R>(Codec<List<int>, R> other) Codec<List<int>, R>
Fuses this with other.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

blockSize → const int
The size of a block of Blowfish ECB data.