RC4.fromBytes constructor

RC4.fromBytes(
  1. List<int> key
)

Creates a new instance by passing a given key.

Implementation

RC4.fromBytes(List<int> key) {
  _key = key;
  _makeBox();
}