ZotKeyPair constructor

ZotKeyPair(
  1. int bitLen,
  2. Encrypto encrypto
)

Implementation

ZotKeyPair(int bitLen, Encrypto encrypto) {
  _privateKey = ZotPrivateKey(bitLen, this, encrypto);
}