sha1Hash 

Requires a Node.js runtime ('qsu/node')Converts String data to sha1 hash value and returns it.
Parameters
| Name | Type | Required | Default |
|---|---|---|---|
str | string | ● | – |
encoding![]() named | 'hex' | 'base64' | 'base64url' | 'binary' | – | 'hex' |

named parameters are passed as named parameters in Dart and keyword arguments in Python.
Returns
string
Examples
javascript
sha1Hash('test'); // Returns 'a94a8fe5ccb19ba61c4c0873d391e987982fbbd3'dart
sha1Hash('test'); // Returns 'a94a8fe5ccb19ba61c4c0873d391e987982fbbd3'python
sha1Hash('test') # Returns 'a94a8fe5ccb19ba61c4c0873d391e987982fbbd3'