Skip to content

ninja-dart/openssl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ninja openssl

Dart library to encrypt and sign using openssl.

Usage

RSA PSS signature and verification

  final message = 'hello world!\n';
  final signature = await signRsaPssBase64(privateKey, message);
  print(signature);
  await verifyRsaPss(publicKey, signature, 'hello world!\n');

AES

TODO

TODO

  • Convert RSA commands to use stdin/stdout

About

Dart library to encrypt and sign using openssl

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages