sshcipher.java

来自「一个非常好的ssh客户端实现」· Java 代码 · 共 68 行

JAVA
68
字号
/****************************************************************************** * * Copyright (c) 1999-2003 AppGate Network Security AB. All Rights Reserved. *  * This file contains Original Code and/or Modifications of Original Code as * defined in and that are subject to the MindTerm Public Source License, * Version 2.0, (the 'License'). You may not use this file except in compliance * with the License. *  * You should have received a copy of the MindTerm Public Source License * along with this software; see the file LICENSE.  If not, write to * AppGate Network Security AB, Otterhallegatan 2, SE-41118 Goteborg, SWEDEN * *****************************************************************************/package com.mindbright.ssh;import com.mindbright.jca.security.MessageDigest;public abstract class SSHCipher {    public static SSHCipher getInstance(String algorithm) {	Class c;	try {	    c = Class.forName("com.mindbright.ssh." + algorithm);	    return (SSHCipher)c.newInstance();	} catch(Throwable t) {	    return null;	}    }    public abstract void encrypt(byte[] src, int srcOff,				 byte[] dest, int destOff, int len);    public abstract void decrypt(byte[] src, int srcOff,				 byte[] dest, int destOff, int len);    public abstract void setKey(byte[] key);    public byte[] encrypt(byte[] src) {	byte[] dest = new byte[src.length];	encrypt(src, 0, dest, 0, src.length); 	return dest;     }    public byte[] decrypt(byte[] src) {	byte[] dest = new byte[src.length];	decrypt(src, 0, dest, 0, src.length);	return dest;    }    public void setKey(String key) {	MessageDigest md5;	byte[] mdKey = new byte[32];	try {	    md5 = MessageDigest.getInstance("MD5");	    md5.update(key.getBytes());	    byte[] digest = md5.digest();	    System.arraycopy(digest, 0, mdKey, 0, 16);	    System.arraycopy(digest, 0, mdKey, 16, 16);	} catch(Exception e) {	    // !!!	    System.out.println("MD5 not implemented, can't generate key out of string!");	    System.exit(1);	}	setKey(mdKey);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?