|
Revision 193, 456 bytes
(checked in by mayuki, 16 months ago)
|
|
lang/csharp/Misuzilla.Build.Tasks.Hash: import Misuzilla.Build.Tasks.Hash
|
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | // $Id$
|
|---|
| 2 | using System;
|
|---|
| 3 | using System.Collections.Generic;
|
|---|
| 4 | using System.Text;
|
|---|
| 5 |
|
|---|
| 6 | namespace Misuzilla.Build.Tasks.Hash
|
|---|
| 7 | {
|
|---|
| 8 | public class MD5 : HashTask
|
|---|
| 9 | {
|
|---|
| 10 | public override System.Security.Cryptography.HashAlgorithm HashAlgorithm
|
|---|
| 11 | {
|
|---|
| 12 | get { return System.Security.Cryptography.MD5.Create(); }
|
|---|
| 13 | }
|
|---|
| 14 |
|
|---|
| 15 | public override string HashAlgorithmName
|
|---|
| 16 | {
|
|---|
| 17 | get { return "MD5"; }
|
|---|
| 18 | }
|
|---|
| 19 | }
|
|---|
| 20 | }
|
|---|