getSenderRatchetKeyPair method

ECKeyPair getSenderRatchetKeyPair()

Implementation

ECKeyPair getSenderRatchetKeyPair() {
  final publicKey = getSenderRatchetKey();
  final privateKey = Curve.decodePrivatePoint(Uint8List.fromList(
      _sessionStructure.senderChain.senderRatchetKeyPrivate));
  return ECKeyPair(publicKey, privateKey);
}