summary refs log tree commit diff
path: root/crypto/src/util/io/pem/PemObjectGenerator.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/util/io/pem/PemObjectGenerator.cs')
-rw-r--r--crypto/src/util/io/pem/PemObjectGenerator.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/crypto/src/util/io/pem/PemObjectGenerator.cs b/crypto/src/util/io/pem/PemObjectGenerator.cs
new file mode 100644
index 000000000..6f9bfc191
--- /dev/null
+++ b/crypto/src/util/io/pem/PemObjectGenerator.cs
@@ -0,0 +1,13 @@
+using System;
+
+namespace Org.BouncyCastle.Utilities.IO.Pem
+{
+	public interface PemObjectGenerator
+	{
+		/// <returns>
+		/// A <see cref="PemObject"/>
+		/// </returns>
+		/// <exception cref="PemGenerationException"></exception>
+		PemObject Generate();
+	}
+}