aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ExportBot/Commands/MD5Command.cs
blob: 0a2ee5d11675260c2493b10fe57d523474167521 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using libsecondlife;

namespace libsecondlife.TestClient
{
    public class MD5Command : Command
    {
        public MD5Command(TestClient testClient)
        {
            Name = "md5";
            Description = "Creates an MD5 hash from a given password. Usage: md5 [password]";
        }

        public override string Execute(string[] args, LLUUID fromAgentID)
        {
            if (args.Length == 1)
                return Helpers.MD5(args[0]);
            else
                return "Usage: md5 [password]";
        }
    }
}