blob: 5d4485badbf503cbb74b9f851a8893d9a386fb7d [file] [log] [blame]
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;
}