1 17 18 package org.apache.geronimo.util.crypto.params; 19 20 import org.apache.geronimo.util.crypto.CipherParameters; 21 22 public class AsymmetricKeyParameter 23 implements CipherParameters 24 { 25 boolean privateKey; 26 27 public AsymmetricKeyParameter( 28 boolean privateKey) 29 { 30 this.privateKey = privateKey; 31 } 32 33 public boolean isPrivate() 34 { 35 return privateKey; 36 } 37 } 38 | Popular Tags |