aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/ch/ethz/ssh2/crypto/PEMStructure.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/ch/ethz/ssh2/crypto/PEMStructure.java')
-rw-r--r--src/main/java/ch/ethz/ssh2/crypto/PEMStructure.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/main/java/ch/ethz/ssh2/crypto/PEMStructure.java b/src/main/java/ch/ethz/ssh2/crypto/PEMStructure.java
new file mode 100644
index 0000000..f665a55
--- /dev/null
+++ b/src/main/java/ch/ethz/ssh2/crypto/PEMStructure.java
@@ -0,0 +1,20 @@
+/*
+ * Copyright (c) 2006-2011 Christian Plattner. All rights reserved.
+ * Please refer to the LICENSE.txt for licensing details.
+ */
+package ch.ethz.ssh2.crypto;
+
+/**
+ * Parsed PEM structure.
+ *
+ * @author Christian Plattner
+ * @version 2.50, 03/15/10
+ */
+
+public class PEMStructure
+{
+ int pemType;
+ String dekInfo[];
+ String procType[];
+ byte[] data;
+} \ No newline at end of file