yanderePasswordHash function
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();
}