FileDocCategorySizeDatePackage
AsymmetricKeyParameter.javaAPI DocAndroid 1.5 API372Wed May 06 22:41:06 BST 2009org.bouncycastle.crypto.params

AsymmetricKeyParameter.java

package org.bouncycastle.crypto.params;

import org.bouncycastle.crypto.CipherParameters;

public class AsymmetricKeyParameter
    implements CipherParameters
{
    boolean privateKey;

    public AsymmetricKeyParameter(
        boolean privateKey)
    {
        this.privateKey = privateKey;
    }

    public boolean isPrivate()
    {
        return privateKey;
    }
}