组织ID: |
org.cryptomator |
项目ID: |
siv-mode |
版本: |
1.0.8 |
最后修改时间: |
2020-04-16 07:05:40 |
包类型: |
jar |
标题: |
SIV Mode |
描述: |
RFC 5297 SIV mode: deterministic authenticated encryption |
相关URL: |
https://github.com/cryptomator/siv-mode |
大小: |
56.77KB |
|
Maven引入代码: |
<dependency>
<groupId>org.cryptomator</groupId>
<artifactId>siv-mode</artifactId>
<version>1.0.8</version>
</dependency>
|
Gradle引入代码: |
org.cryptomator:siv-mode:1.0.8
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<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>org.cryptomator</groupId>
<artifactId>siv-mode</artifactId>
<version>1.0.8</version>
<name>SIV Mode</name>
<description>RFC 5297 SIV mode: deterministic authenticated encryption</description>
<url>https://github.com/cryptomator/siv-mode</url>
<scm>
<connection>scm:git:git@github.com:cryptomator/siv-mode.git</connection>
<developerConnection>scm:git:git@github.com:cryptomator/siv-mode.git</developerConnection>
<url>git@github.com:cryptomator/siv-mode.git</url>
</scm>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Sebastian Stenzel</name>
<email>sebastian.stenzel@gmail.com</email>
<timezone>+1</timezone>
<organization>cryptomator.org</organization>
<organizationUrl>http://cryptomator.org</organizationUrl>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.54</version>
<!-- see maven-shade-plugin; we don't want this as a transitive dependency in other projects -->
<optional>true</optional>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<configuration>
<archive>
<manifestEntries>
<Sealed>true</Sealed>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<keepDependenciesWithProvidedScope>false</keepDependenciesWithProvidedScope>
<createDependencyReducedPom>false</createDependencyReducedPom>
<createSourcesJar>true</createSourcesJar>
<artifactSet>
<includes>
<include>org.bouncycastle:bcprov-jdk15on</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.bouncycastle</pattern>
<shadedPattern>org.cryptomator.siv.org.bouncycastle</shadedPattern>
</relocation>
</relocations>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</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>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.7.201606060606</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.2.0</version>
<configuration>
<repoToken>${env.COVERALLS_REPO_TOKEN}</repoToken>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.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.10.4</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.6</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>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.cryptomator.siv.SivMode$1.class
org.cryptomator.siv.SivMode$BlockCipherFactory.class
org.cryptomator.siv.SivMode.class
META-INF/maven/org.cryptomator/siv-mode/pom.xml
META-INF/maven/org.cryptomator/siv-mode/pom.properties
org.cryptomator.siv.org.bouncycastle.crypto.BlockCipher.class
org.cryptomator.siv.org.bouncycastle.crypto.CipherParameters.class
org.cryptomator.siv.org.bouncycastle.crypto.CryptoException.class
org.cryptomator.siv.org.bouncycastle.crypto.DataLengthException.class
org.cryptomator.siv.org.bouncycastle.crypto.InvalidCipherTextException.class
org.cryptomator.siv.org.bouncycastle.crypto.Mac.class
org.cryptomator.siv.org.bouncycastle.crypto.OutputLengthException.class
org.cryptomator.siv.org.bouncycastle.crypto.RuntimeCryptoException.class
org.cryptomator.siv.org.bouncycastle.crypto.engines.AESFastEngine.class
org.cryptomator.siv.org.bouncycastle.crypto.macs.CMac.class
org.cryptomator.siv.org.bouncycastle.crypto.modes.CBCBlockCipher.class
org.cryptomator.siv.org.bouncycastle.crypto.paddings.BlockCipherPadding.class
org.cryptomator.siv.org.bouncycastle.crypto.paddings.ISO7816d4Padding.class
org.cryptomator.siv.org.bouncycastle.crypto.params.KeyParameter.class
org.cryptomator.siv.org.bouncycastle.crypto.params.ParametersWithIV.class
org.cryptomator.siv.org.bouncycastle.util.Arrays$Iterator.class
org.cryptomator.siv.org.bouncycastle.util.Arrays.class
org.cryptomator.siv.org.bouncycastle.util.Pack.class
org/cryptomator/siv/org/bouncycastle/x509/CertPathReviewerMessages.properties
org/cryptomator/siv/org/bouncycastle/x509/CertPathReviewerMessages_de.properties
|
依赖Jar: |
bcprov-jdk15on-1.54.jar
/org.bouncycastle/bcprov-jdk15on/1.54
查看bcprov-jdk15on所有版本文件
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
|