BaseStreamCipher class abstract
Base implementation of StreamCipher which provides shared methods.
- Implemented types
- Implementers
Constructors
Properties
- algorithmName → String
-
Get this algorithm's standard name.
no setterinherited
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
init(
bool forEncryption, CipherParameters? params) → void -
Init the cipher with its initialization
params
. The type of CipherParameters depends on the algorithm being used (see the documentation of each implementation to find out more).inherited -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
process(
Uint8List data) → Uint8List -
Process a whole block of
data
at once, returning the result in a byte array.override -
processBytes(
Uint8List inp, int inpOff, int len, Uint8List out, int outOff) → void -
Process
len
bytes of data given byinp
and starting at offsetinpOff
. The resulting cipher text is put inout
beginning at positionoutOff
.inherited -
reset(
) → void -
Reset the cipher to its original state.
inherited
-
returnByte(
int inp) → int -
Process one byte of data given by
inp
and return its encrypted value.inherited -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited