calculateECFingerprint static method
Implementation
static Uint8List calculateECFingerprint(BigInt publicKey, ECCurve curve,
[@visibleForTesting int? timestamp]) {
return Uint8List.fromList(sha1
.hashSync(buildECPublicKeyPacket(publicKey, curve, timestamp, 0x99))
.bytes);
}