RSAKeypair constructor

RSAKeypair(
  1. RSAPrivateKey _privateKey
)

Create a RSAKeypair using an RSAPrivateKey

Implementation

RSAKeypair(this._privateKey) : _publicKey = _privateKey.publicKey;