crypto icon indicating copy to clipboard operation
crypto copied to clipboard

A set of cryptographic functions implemented in pure Dart.

Results 30 crypto issues
Sort by recently updated
recently updated
newest added

Wouldn't it be better to use Uint8List in your librairy instead of List ? For instance in the sha512.convert method ? Thanks :)

_Originally opened as dart-lang/sdk#4611_ _This issue was originally filed by dha...@google.com_ --- Test code: new File('recordroyale.ogg').readAsBytes().then((buf) {   var md5 = new MD5();   md5.update(buf);   print(md5.digest()); }); where 'recordroyale.ogg' is about six...

type-bug
P2

A lot of project need random bytes to seed crypto. A common and cryptographic secure implementation would be helpfull, reducing the potential usage of insecure random byte generators.

cla: yes

**Issue by [jwendel](https://github.com/jwendel)** _Originally opened as dart-lang/sdk#9822_ --- **What steps will reproduce the problem?** The current crypto library only supports SHA-1 and a limited subset of SHA-2 (SHA-256). While this...

type-enhancement
contributions-welcome

I am using flutter to send data to my aqueduct web api in encrypted mode. In aqueduct I need to use decryption to get the data, sort out request info...