コード例 #1
0
 /**
  * Returns ASN.1 encoded form of this X.509 IssuingDistributionPoint value.
  *
  * @return a byte array containing ASN.1 encoded form.
  */
 public byte[] getEncoded() {
   if (encoding == null) {
     encoding = ASN1.encode(this);
   }
   return encoding;
 }
コード例 #2
0
 /**
  * Returns the encoded of the object.
  *
  * @return a byte array containing ASN.1 encoded form.
  */
 public byte[] getEncoded() {
   if (encoding == null) {
     encoding = ASN1.encode(keyUsage);
   }
   return encoding;
 }