We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import 'dart:typed_data'; import 'package:crypton/crypton.dart'; main() { ECKeypair ecKeypair = ECKeypair.fromRandom(); for (int i = 0; i < 100; i++) { String message = i.toRadixString(16); final List<int> codeUnits = message.codeUnits; final Uint8List unit8List = Uint8List.fromList(codeUnits); final signature = ecKeypair.privateKey.createSHA256Signature(unit8List); bool verified = ecKeypair.publicKey.verifySHA256Signature(unit8List, signature); if (!verified) { print('verified failed: $unit8List'); } } }
On average, the fail rate is about 5%. RSAKey seems fine though.
The text was updated successfully, but these errors were encountered:
Hmm, that seems wired. I'm gonna look into it
Sorry, something went wrong.
No branches or pull requests
On average, the fail rate is about 5%. RSAKey seems fine though.
The text was updated successfully, but these errors were encountered: