nextBigInteger method
Implementation
BigInt nextBigInteger(int bitLength) {
// Default impl or force override?
// Usually interfaces don't have body unless abstract class.
// SecureRandom is abstract class.
// I can provide simple impl here or force subclass.
throw UnimplementedError();
}