crypto
crypto copied to clipboard
A set of cryptographic functions implemented in pure Dart.
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...
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.
**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...
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...
customer request.