You can download eddsa-0.1.0.jar in this page.
Public Domain
eddsa-0.1.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/net.i2p.crypto/eddsa/pom.properties META-INF/maven/net.i2p.crypto/eddsa/pom.xml net.i2p.crypto.eddsa.EdDSAEngine.class net.i2p.crypto.eddsa.EdDSAKey.class net.i2p.crypto.eddsa.EdDSAPrivateKey.class net.i2p.crypto.eddsa.EdDSAPublicKey.class net.i2p.crypto.eddsa.KeyFactory.class net.i2p.crypto.eddsa.KeyPairGenerator.class net.i2p.crypto.eddsa.Utils.class net.i2p.crypto.eddsa.math.Constants.class net.i2p.crypto.eddsa.math.Curve.class net.i2p.crypto.eddsa.math.Encoding.class net.i2p.crypto.eddsa.math.Field.class net.i2p.crypto.eddsa.math.FieldElement.class net.i2p.crypto.eddsa.math.GroupElement.class net.i2p.crypto.eddsa.math.ScalarOps.class net.i2p.crypto.eddsa.math.bigint.BigIntegerFieldElement.class net.i2p.crypto.eddsa.math.bigint.BigIntegerLittleEndianEncoding.class net.i2p.crypto.eddsa.math.bigint.BigIntegerScalarOps.class net.i2p.crypto.eddsa.math.ed25519.Ed25519FieldElement.class net.i2p.crypto.eddsa.math.ed25519.Ed25519LittleEndianEncoding.class net.i2p.crypto.eddsa.math.ed25519.Ed25519ScalarOps.class net.i2p.crypto.eddsa.spec.EdDSAGenParameterSpec.class net.i2p.crypto.eddsa.spec.EdDSANamedCurveSpec.class net.i2p.crypto.eddsa.spec.EdDSANamedCurveTable.class net.i2p.crypto.eddsa.spec.EdDSAParameterSpec.class net.i2p.crypto.eddsa.spec.EdDSAPrivateKeySpec.class net.i2p.crypto.eddsa.spec.EdDSAPublicKeySpec.class
eddsa-0.1.0.pom file content.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.i2p.crypto</groupId> <artifactId>eddsa</artifactId> <version>0.1.0</version> <name>ed25519-java</name> <packaging>bundle</packaging> <description>Implementation of EdDSA in Java</description> <url>https://github.com/str4d/ed25519-java</url> <licenses> <license> <name>Public Domain</name> <url>http://en.wikipedia.org/wiki/Public_domain</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>str4d</id> <name>str4d</name> <email>str4d@i2pmail.org</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/str4d/ed25519-java.git</connection> <developerConnection>scm:git:git@github.com:str4d/ed25519-java.git</developerConnection> <url>https://github.com/str4d/ed25519-java</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <build> <sourceDirectory>src</sourceDirectory> <testSourceDirectory>test</testSourceDirectory> <testResources> <testResource> <directory>test</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> <version>3.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>3.0.1</version> <extensions>true</extensions> <configuration> <instructions> <Bundle-Name>ed25519-java</Bundle-Name> <Bundle-Description> ${project.description} </Bundle-Description> <Export-Package> net.i2p.crypto.eddsa, net.i2p.crypto.eddsa.spec </Export-Package> <Private-Package> net.i2p.crypto.eddsa.math.* </Private-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <type>maven-plugin</type> <scope>test</scope> </dependency> </dependencies> <contributors> <contributor> <name>mbakkar</name> <email>Mohamed.b.bakkar@gmail.com</email> </contributor> <contributor> <name>Philippe Marchesseault</name> <email>pmarches@gmail.com</email> </contributor> <contributor> <name>BloodyRookie</name> <email>nemproject@gmx.de</email> </contributor> </contributors> </project>
<dependency> <groupId>net.i2p.crypto</groupId> <artifactId>eddsa</artifactId> <version>0.1.0</version> </dependency>
If you think the following eddsa-0.1.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.