yanderePasswordHash function

String yanderePasswordHash(
  1. String password
)

Helper method to encrypt password for yande.re.

Implementation

String yanderePasswordHash(String password) {
  String clearText = 'choujin-steiner--$password--';

  return sha1.convert(utf8.encode(clearText)).toString();
}