sha256 method
SHA256散列
Implementation
String? sha256() {
if (this == null) {
return null;
}
return EncryptUtil.encodeSha256(this!);
}
SHA256散列
String? sha256() {
if (this == null) {
return null;
}
return EncryptUtil.encodeSha256(this!);
}