aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/trilead/ssh2/crypto/PEMStructure.java
blob: 3bb4b5a03929d3e455b6bb7385e1b4740372b899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.trilead.ssh2.crypto;

/**
 * Parsed PEM structure.
 * 
 * @author Christian Plattner, plattner@trilead.com
 * @version $Id: PEMStructure.java,v 1.1 2007/10/15 12:49:56 cplattne Exp $
 */

public class PEMStructure
{
	int pemType;
	String dekInfo[];
	String procType[];
	byte[] data;
}