Monthly Archives: 6月 2013

[C#]文字列をMD5ハッシュ化し,文字列として返すメソッド

2013年6月24日 (カテゴリ: C#:)

C#では、MD5ハッシュ値を、System.Security.Cryptography.MD5クラスを使って計算できます。 実際の計算処理もComputeHashメソッドをコールするだけです。 public byte[] ComputeHash( byte[] buffer )   public byte[] ComputeHash( Stream inputStream )   public byte[] ComputeHash( byte[] buff…


続きを読む

mysqldumpのオプション一覧

2013年6月2日 (カテゴリ: 未分類:)

mysqldump –helpの結果です xamppに入っていたMySQL5.5環境で実行しています。 mysqldump Ver 10.13 Distrib 5.5.27, for Win32 (x86) Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.   Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademark…


続きを読む