jwkThumbprint property
Gets the JWK thumbprint.
Throws an AskarKeyException if the thumbprint retrieval fails.
Implementation
String get jwkThumbprint {
try {
return askarKeyGetJwkThumbprint(localKeyHandle, algorithm).getValueOrException();
} catch (e) {
throw AskarKeyException('Failed to get jwk thumbprint: $e');
}
}