using System; using System.IO; 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 KnownHosts : HostKeyRepository { private const String _known_hosts="known_hosts"; /* static final int OK=0; static final int NOT_INCLUDED=1; static final int CHANGED=2; */ /* static final int SSHDSS=0; static final int SSHRSA=1; static final int UNKNOWN=2; */ private JSch jsch=null; private String known_hosts=null; private System.Collections.ArrayList pool=null; internal KnownHosts(JSch jsch) : base() { this.jsch=jsch; pool=new System.Collections.ArrayList(); } internal void setKnownHosts(String foo) { try { known_hosts=foo; FileStream fis=File.OpenRead(foo); setKnownHosts( new StreamReader(fis) ); } catch { } } internal void setKnownHosts(StreamReader foo) { pool.Clear(); System.Text.StringBuilder sb=new System.Text.StringBuilder(); byte i; int j; bool error=false; try { StreamReader fis=foo; String host; String key=null; int type; byte[] buf=new byte[1024]; int bufl=0; loop: while(true) { bufl=0; while(true) { j=fis.Read(); if(j==-1){ goto break_loop;} if(j==0x0d){ continue; } if(j==0x0a){ break; } buf[bufl++]=(byte)j; } j=0; while(j=bufl) { addInvalidLine(System.Text.Encoding.Default.GetString(buf, 0, bufl)); goto loop; } sb.Length = 0; while(j=bufl || host.Length==0) { addInvalidLine(System.Text.Encoding.Default.GetString(buf, 0, bufl)); goto loop; } sb.Length=0; type=-1; while(j=bufl) { addInvalidLine(Util.getString(buf, 0, bufl)); goto loop; } sb.Length=0; while(j