The main download location for crypto-native is the SourceForge download site.
crypto-native also deployed into Maven Central repository, so if you are using Apache Maven build environment, nothing to do: mvn will download automatically.
If you are using Apache Maven build system, you need only specify the module of crypto-native you want as dependency:
<dependency> <groupId>net.sf.crypto-native<groupId> <artifactId>crypto-native-xxxxxx</artifactID> <version>${project.version}</version> </dependency>
In order to get snapshot versions add this repository to the <repositories> section of your pom.xml
<snapshotRepository> <id>sonatype-nexus-snapshot</id> <name>Nexus Snapshot Repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository>
Sources are available on sourceforge at:
svn checkout http://svn.code.sf.net/p/crypto-native/code/trunk crypto-native
Please refer to the build section to get detailed instructions.