compressed function

Uint8List compressed(
  1. ECPoint q
)

AKA 'ser_P(P)' in the specification

Implementation

Uint8List compressed(ECPoint q) {
  return q.getEncoded(true);
}