ECB constructor

ECB(
  1. List<int> key
)

Creates an ECB instance with the specified encryption key.

Parameters:

  • key: The encryption key used for ECB mode.

Implementation

ECB(List<int> key) : super(key);