You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
347 B
17 lines
347 B
using System;
|
|
using System.IO;
|
|
|
|
namespace Org.BouncyCastle.Utilities.IO.Pem
|
|
{
|
|
public interface PemObjectParser
|
|
{
|
|
/// <param name="obj">
|
|
/// A <see cref="PemObject"/>
|
|
/// </param>
|
|
/// <returns>
|
|
/// A <see cref="System.Object"/>
|
|
/// </returns>
|
|
/// <exception cref="IOException"></exception>
|
|
object ParseObject(PemObject obj);
|
|
}
|
|
}
|
|
|