コード例 #1
0
ファイル: DSSASN1Utils.java プロジェクト: Ovrful/sd-dss-1
  public static byte[] getEncoded(final AlgorithmIdentifier algorithmIdentifier)
      throws DSSException {

    try {
      return algorithmIdentifier.getEncoded(ASN1Encoding.DER);
    } catch (IOException e) {
      throw new DSSException(e);
    }
  }