d property

List<int> d

Elliptic curve private key component d (confidential).

Implementation

List<int> get d {
  final d = _d;
  if (d.hasBeenDestroyed) {
    throw UnsupportedError('Private key has been destroyed: $this');
  }
  return d;
}