comparison src/ch/ethz/ssh2/crypto/PEMStructure.java @ 278:d7e088fa2123 ganymed

start conversion from trilead to ganymed
author Carl Byington <carl@five-ten-sg.com>
date Fri, 18 Jul 2014 16:45:43 -0700
parents 91a31873c42a
children 071eccdff8ea
comparison
equal deleted inserted replaced
277:e0da43026046 278:d7e088fa2123
4 */ 4 */
5 package ch.ethz.ssh2.crypto; 5 package ch.ethz.ssh2.crypto;
6 6
7 /** 7 /**
8 * Parsed PEM structure. 8 * Parsed PEM structure.
9 * 9 *
10 * @author Christian Plattner 10 * @author Christian Plattner
11 * @version 2.50, 03/15/10 11 * @version 2.50, 03/15/10
12 */ 12 */
13 13
14 public class PEMStructure 14 public class PEMStructure
15 { 15 {
16 int pemType; 16 public int pemType;
17 String dekInfo[]; 17 String dekInfo[];
18 String procType[]; 18 String procType[];
19 byte[] data; 19 byte[] data;
20 } 20 }