SparkleShare/SharpSSH/jsch/HostKey.cs
2010-07-15 20:41:37 +01:00

75 lines
2.8 KiB
Java

using System;
namespace Tamir.SharpSsh.jsch
{
/* -*-mode:java; c-basic-offset:2; -*- */
/*
Copyright (c) 2002,2003,2004 ymnk, JCraft,Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the distribution.
3. The names of the authors may not be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,
INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
public class HostKey{
private static byte[] sshdss= System.Text.Encoding.Default.GetBytes( "ssh-dss" );
private static byte[] sshrsa= System.Text.Encoding.Default.GetBytes( "ssh-rsa" );
public const int SSHDSS=0;
public const int SSHRSA=1;
public const int UNKNOWN=2;
internal String host;
internal int type;
internal byte[] key;
public HostKey(String host, byte[] key)
{
this.host=host; this.key=key;
if(key[8]=='d'){ this.type=SSHDSS; }
else if(key[8]=='r'){ this.type=SSHRSA; }
else { throw new JSchException("invalid key type");}
}
internal HostKey(String host, int type, byte[] key){
this.host=host; this.type=type; this.key=key;
}
public String getHost(){ return host; }
public String getType(){
if(type==SSHDSS){ return System.Text.Encoding.Default.GetString(sshdss); }
if(type==SSHRSA){ return System.Text.Encoding.Default.GetString(sshrsa);}
return "UNKNOWN";
}
public String getKey(){
return Convert.ToBase64String(key, 0, key.Length);
}
public String getFingerPrint(JSch jsch){
HASH hash=null;
try{
hash=(HASH)Activator.CreateInstance(Type.GetType(jsch.getConfig("md5")));
}
catch(Exception e){ Console.Error.WriteLine("getFingerPrint: "+e); }
return Util.getFingerPrint(hash, key);
}
}
}