IV.fromSecureRandom constructor
IV.fromSecureRandom(
- int length
Creates an Initialization Vector object from a length.
The key is filled with length
bytes generated by a
Random.secure() generator
Implementation
IV.fromSecureRandom(int length) : super(SecureRandom(length).bytes);