| 组织ID: |
net.i2p.crypto |
| 项目ID: |
eddsa |
| 版本: |
0.2.0 |
| 最后修改时间: |
2018-07-27 15:26:22 |
| 包类型: |
jar |
| 标题: |
EdDSA-Java |
| 描述: |
Implementation of EdDSA in Java |
| 相关URL: |
https://github.com/str4d/ed25519-java |
| 大小: |
60.71KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>net.i2p.crypto</groupId>
<artifactId>eddsa</artifactId>
<version>0.2.0</version>
</dependency>
|
| Gradle引入代码: |
net.i2p.crypto:eddsa:0.2.0
|
| 下载Jar包: |
|
| POM文件内容: |
<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.2.0</version>
<name>EdDSA-Java</name>
<packaging>bundle</packaging>
<description>Implementation of EdDSA in Java</description>
<url>https://github.com/str4d/ed25519-java</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<licenses>
<license>
<name>CC0 1.0 Universal</name>
<url>https://creativecommons.org/publicdomain/zero/1.0/</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>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.0.1</version>
<extensions>true</extensions>
<configuration>
<instructions>
<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>
<configuration>
<charset>UTF-8</charset>
<docencoding>UTF-8</docencoding>
<encoding>UTF-8</encoding>
<header><script type='text/x-mathjax-config'>
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'] ],
processEscapes: true
}
});
</script>
<script type='text/javascript' src='https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script></header>
<!-- Required for Java 8u121 or later. See https://github.com/neo4j/neo4j-java-driver/pull/318 -->
<!--<additionalparam>--allow-script-in-comments</additionalparam>-->
</configuration>
<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.7</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>zzz</name>
<email>zzz@mail.i2p</email>
</contributor>
<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>
<contributor>
<name>Jan Willem Janssen</name>
<email>janwillem.janssen@luminis.eu</email>
</contributor>
<contributor>
<name>Lyor Goldstein</name>
<email>lyor.goldstein@gmail.com</email>
</contributor>
<contributor>
<name>Ilya Maykov</name>
<email>ilyam@fb.com</email>
</contributor>
</contributors>
</project>
|
| Jar包内容: |
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$1.class
net.i2p.crypto.eddsa.EdDSAEngine$OneShotSpec.class
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.EdDSASecurityProvider$1.class
net.i2p.crypto.eddsa.EdDSASecurityProvider.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$1.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$1.class
net.i2p.crypto.eddsa.math.GroupElement$Representation.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
|
| 依赖Jar: |
hamcrest-all-1.3.jar
/org.hamcrest/hamcrest-all/1.3
查看hamcrest-all所有版本文件
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
|