Encrypted.allZerosOfLength constructor

Encrypted.allZerosOfLength(
  1. int length
)

Creates an Encrypted object of ALL ZEROS from a length. The key is ALL ZEROS - NOT CRYPTOGRAPHICALLY SECURE!

Implementation

Encrypted.allZerosOfLength(int length) : _bytes = Uint8List(length);