01: package org.bouncycastle.crypto.params;
02:
03: import org.bouncycastle.crypto.CipherParameters;
04:
05: public class AsymmetricKeyParameter implements CipherParameters {
06: boolean privateKey;
07:
08: public AsymmetricKeyParameter(boolean privateKey) {
09: this .privateKey = privateKey;
10: }
11:
12: public boolean isPrivate() {
13: return privateKey;
14: }
15: }
|