Home | History | Annotate | Download | only in params
      1 package org.bouncycastle.crypto.params;
      2 
      3 import org.bouncycastle.crypto.CipherParameters;
      4 
      5 public class AsymmetricKeyParameter
      6     implements CipherParameters
      7 {
      8     boolean privateKey;
      9 
     10     public AsymmetricKeyParameter(
     11         boolean privateKey)
     12     {
     13         this.privateKey = privateKey;
     14     }
     15 
     16     public boolean isPrivate()
     17     {
     18         return privateKey;
     19     }
     20 }
     21