blob: 54a037673da4235c1848cf3a7817f175964526ba [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.internal.org.bouncycastle.crypto.params;
import com.android.internal.org.bouncycastle.crypto.CipherParameters;
/**
* @hide This class is not part of the Android public SDK API
*/
public class AsymmetricKeyParameter
implements CipherParameters
{
boolean privateKey;
public AsymmetricKeyParameter(
boolean privateKey)
{
this.privateKey = privateKey;
}
public boolean isPrivate()
{
return privateKey;
}
}