sha512 method
SHA512散列
Implementation
String? sha512() {
if (this == null) {
return null;
}
return EncryptUtil.encodeSha512(this!);
}
SHA512散列
String? sha512() {
if (this == null) {
return null;
}
return EncryptUtil.encodeSha512(this!);
}