blob: 3cbc442f2741ccdbae3821720cb1d05c23f600aa [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.org.bouncycastle.util.io.pem;
/**
* Base interface for generators of PEM objects.
* @hide This class is not part of the Android public SDK API
*/
@libcore.api.CorePlatformApi
public interface PemObjectGenerator
{
/**
* Generate a PEM object.
*
* @return the generated object.
* @throws PemGenerationException on failure.
*/
PemObject generate()
throws PemGenerationException;
}