calculateRSAFingerprint static method
Implementation
static Uint8List calculateRSAFingerprint(
List<int> modulus, List<int> exponent,
[@visibleForTesting int? timestamp]) {
return Uint8List.fromList(sha1
.hashSync(buildRSAPublicKeyPacket(modulus, exponent, timestamp, 0x99))
.bytes);
}