mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-03 15:37:18 +00:00
11 lines
202 B
Dart
11 lines
202 B
Dart
import 'dart:convert';
|
|
|
|
import 'package:crypto/crypto.dart';
|
|
|
|
String convertToSha512Hash(String text) {
|
|
var bytes = utf8.encode(text);
|
|
|
|
var hash = sha512.convert(bytes);
|
|
return hash.toString();
|
|
}
|