VB.NET
' パスワードSHA1ハッシュコードの作成
Dim sha1CryptoService As New SHA1CryptoServiceProvider()
Dim byteValue = Encoding.UTF8.GetBytes("パスワード")
Dim hashValue = sha1CryptoService.ComputeHash(byteValue)
C#
// パスワードSHA1ハッシュコードの作成
{
SHA1CryptoServiceProvider sha1CryptoService = new SHA1CryptoServiceProvider();
dynamic byteValue = Encoding.UTF8.GetBytes("パスワード");
dynamic hashValue = sha1CryptoService.ComputeHash(byteValue);
}