working along to decode the DEROctetString

This commit is contained in:
Vincent Batts 2012-10-23 15:18:04 -04:00
parent 5a3abc75a1
commit b07f5a05e8
6 changed files with 285 additions and 24 deletions

View file

@ -18,7 +18,12 @@
<target name="compile" depends="init"
description="compile the source " >
<!-- Compile the java code from ${src.dir} into ${build.dir} -->
<javac srcdir="${src.dir}" destdir="${build.dir}"/>
<javac includeantruntime="false" srcdir="${src.dir}" destdir="${build.dir}">
<classpath>
<pathelement path="${classpath}"/>
<pathelement location="lib/bcprov-jdk16-1.46.jar"/>
</classpath>
</javac>
</target>
<target name="dist" depends="compile"