annotate src/com/trilead/ssh2/crypto/PEMStructure.java @ 303:a218d9cd725b
ganymed
add ecdsa key support everywhere
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Tue, 29 Jul 2014 20:24:24 -0700 |
parents |
0ce5cc452d02 |
children |
|
rev |
line source |
0
|
1
|
|
2 package com.trilead.ssh2.crypto;
|
|
3
|
|
4 /**
|
|
5 * Parsed PEM structure.
|
|
6 *
|
|
7 * @author Christian Plattner, plattner@trilead.com
|
|
8 * @version $Id: PEMStructure.java,v 1.1 2007/10/15 12:49:56 cplattne Exp $
|
|
9 */
|
|
10
|
|
11 public class PEMStructure {
|
|
12 public int pemType;
|
|
13 String dekInfo[];
|
|
14 String procType[];
|
|
15 public byte[] data;
|
|
16 } |