From abd16a0d0b44884f1ccb266155d6b4149179ca14 Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Sun, 3 Feb 2013 19:00:31 -0800 Subject: Remove J2ME compatibility layer for keys Use JCE instead of the DIY crypto library that is in Trilead. This was apparently for J2ME devices. Well, I'm sorry, J2ME devices, you're dead to me. --- src/com/trilead/ssh2/signature/DSAPublicKey.java | 45 ------------------------ 1 file changed, 45 deletions(-) delete mode 100644 src/com/trilead/ssh2/signature/DSAPublicKey.java (limited to 'src/com/trilead/ssh2/signature/DSAPublicKey.java') diff --git a/src/com/trilead/ssh2/signature/DSAPublicKey.java b/src/com/trilead/ssh2/signature/DSAPublicKey.java deleted file mode 100644 index f8351ff..0000000 --- a/src/com/trilead/ssh2/signature/DSAPublicKey.java +++ /dev/null @@ -1,45 +0,0 @@ -package com.trilead.ssh2.signature; - -import java.math.BigInteger; - -/** - * DSAPublicKey. - * - * @author Christian Plattner, plattner@trilead.com - * @version $Id: DSAPublicKey.java,v 1.1 2007/10/15 12:49:57 cplattne Exp $ - */ -public class DSAPublicKey -{ - private BigInteger p; - private BigInteger q; - private BigInteger g; - private BigInteger y; - - public DSAPublicKey(BigInteger p, BigInteger q, BigInteger g, BigInteger y) - { - this.p = p; - this.q = q; - this.g = g; - this.y = y; - } - - public BigInteger getP() - { - return p; - } - - public BigInteger getQ() - { - return q; - } - - public BigInteger getG() - { - return g; - } - - public BigInteger getY() - { - return y; - } -} \ No newline at end of file -- cgit v1.2.3