BlockCipher constructor

BlockCipher(
  1. String algorithmName
)

Create the cipher specified by the standard algorithmName.

Implementation

factory BlockCipher(String algorithmName) =>
    registry.create<BlockCipher>(algorithmName);