组织ID: |
com.healthmarketscience.jackcess |
项目ID: |
jackcess-encrypt |
版本: |
2.1.3 |
最后修改时间: |
2018-08-01 17:03:30 |
包类型: |
jar |
标题: |
Jackcess Encrypt |
描述: |
An add-on to the Jackcess library for handling encryption in MS Access files. |
大小: |
84.17KB |
|
Maven引入代码: |
<dependency>
<groupId>com.healthmarketscience.jackcess</groupId>
<artifactId>jackcess-encrypt</artifactId>
<version>2.1.3</version>
</dependency>
|
Gradle引入代码: |
com.healthmarketscience.jackcess:jackcess-encrypt:2.1.3
|
下载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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.healthmarketscience</groupId>
<artifactId>openhms-parent</artifactId>
<version>1.1.8</version>
</parent>
<groupId>com.healthmarketscience.jackcess</groupId>
<artifactId>jackcess-encrypt</artifactId>
<name>Jackcess Encrypt</name>
<description>An add-on to the Jackcess library for handling encryption in MS Access files.</description>
<version>2.1.3</version>
<url>http://jackcessencrypt.sf.net</url>
<inceptionYear>2010</inceptionYear>
<developers>
<developer>
<name>James Ahlborn</name>
<id>jahlborn</id>
<email>jahlborn@users.sf.net</email>
<organization>Boomi, Inc.</organization>
<roles>
<role>Owner</role>
</roles>
<timezone>-5</timezone>
</developer>
</developers>
<contributors>
<contributor>
<name>Vladimir Berezniker</name>
<email>vmpn@vmpn.net</email>
<url>http://www.linkedin.com/in/vladimirberezniker</url>
<roles>
<role>Deciphered various encryption algorithms</role>
</roles>
<timezone>-5</timezone>
</contributor>
</contributors>
<issueManagement>
<system>SourceForge2</system>
<url>https://sourceforge.net/p/jackcessencrypt/bugs/</url>
</issueManagement>
<scm>
<connection>scm:svn:svn://svn.code.sf.net/p/jackcessencrypt/code/tags/jackcess-encrypt-2.1.3</connection>
<!-- read/write svn connection -->
<developerConnection>scm:svn:svn+ssh://svn.code.sf.net/p/jackcessencrypt/code/tags/jackcess-encrypt-2.1.3</developerConnection>
<url>http://svn.code.sf.net/p/jackcessencrypt/code/tags/jackcess-encrypt-2.1.3</url>
</scm>
<build>
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<filtering>false</filtering>
<includes>
<include>**/*.class</include>
</includes>
</resource>
</resources>
<defaultGoal>install</defaultGoal>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>once</forkMode>
<systemProperties>
<property>
<name>log4j.configuration</name>
<value>log4j_test.properties</value>
</property>
<property>
<name>com.healthmarketscience.jackcess.testFormats</name>
<value>${jackcess.testFormats}</value>
</property>
</systemProperties>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<compilerArgument>-Xlint:all,-cast</compilerArgument>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
</instructions>
</configuration>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<configuration>
<smtpHost>localhost</smtpHost>
<toAddresses>
<toAddress>jackcess-users@lists.sourceforge.net</toAddress>
</toAddresses>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>com.sun.tools.xjc.maven2</groupId>
<artifactId>maven-jaxb-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<id>jaxb1</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<generatePackage>com.healthmarketscience.jackcess.cryptmodel</generatePackage>
<includeSchemas>
<includeSchema>**/com/healthmarketscience/jackcess/cryptmodel/encryptionInfo.xsd</includeSchema>
</includeSchemas>
</configuration>
</execution>
<execution>
<id>jaxb2</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<generatePackage>com.healthmarketscience.jackcess.cryptmodel.password</generatePackage>
<includeSchemas>
<includeSchema>**/com/healthmarketscience/jackcess/cryptmodel/encryptionInfo.xsd</includeSchema>
<includeSchema>**/com/healthmarketscience/jackcess/cryptmodel/passwordEncryptor.xsd</includeSchema>
</includeSchemas>
</configuration>
</execution>
<execution>
<id>jaxb3</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<generatePackage>com.healthmarketscience.jackcess.cryptmodel.cert</generatePackage>
<includeSchemas>
<includeSchema>**/com/healthmarketscience/jackcess/cryptmodel/certificateEncryptor.xsd</includeSchema>
</includeSchemas>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-xjc</artifactId>
<version>2.1.9</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.1.9</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.healthmarketscience.jackcess</groupId>
<artifactId>jackcess</artifactId>
<version>2.1.0</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.52</version>
</dependency>
<dependency>
<groupId>com.healthmarketscience.jackcess</groupId>
<artifactId>jackcess</artifactId>
<version>2.1.0</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<rulesets>
<ruleset>${basedir}/src/site/pmd/custom-ruleset.xml</ruleset>
</rulesets>
<excludeRoots>
<excludeRoot>target/generated-sources/xjc</excludeRoot>
</excludeRoots>
</configuration>
</plugin>
<plugin>
<artifactId>maven-changes-plugin</artifactId>
<configuration>
<issueLinkTemplatePerSystem>
<SourceForge2Features>http://sourceforge.net/p/jackcessencrypt/feature-requests/%ISSUE%</SourceForge2Features>
</issueLinkTemplatePerSystem>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<minmemory>128m</minmemory>
<maxmemory>512</maxmemory>
<links>
<list>http://download.oracle.com/javase/1.5.0/docs/api</list>
<list>http://download.oracle.com/javaee/5/api</list>
<list>http://jackcess.sourceforge.net/apidocs/</list>
<list>http://www.bouncycastle.org/docs/docs1.5on/</list>
</links>
<source>1.5</source>
<show>public</show>
<stylesheetfile>${basedir}/src/site/javadoc/stylesheet.css</stylesheetfile>
<quiet>true</quiet>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration>
<excludeFilterFile>${basedir}/src/site/findbugs/exclude.xml</excludeFilterFile>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>com/healthmarketscience/jackcess/cryptmodel/**/*.class</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<site>
<id>jackcessencrypt-build-site</id>
<url>scp://shell.sourceforge.net/home/project-web/jackcessencrypt/htdocs</url>
</site>
</distributionManagement>
<properties>
<jackcess.bigIndex>true</jackcess.bigIndex>
<jackcess.testFormats>V1997,V2000,V2003,V2007</jackcess.testFormats>
</properties>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.healthmarketscience.jackcess.PasswordCallback.class
com.healthmarketscience.jackcess.InvalidCredentialsException.class
com.healthmarketscience.jackcess.CryptCodecProvider.class
com.healthmarketscience.jackcess.impl.OfficeCryptCodecHandler$Phase.class
com.healthmarketscience.jackcess.impl.OfficeCryptCodecHandler.class
com.healthmarketscience.jackcess.impl.JetCryptCodecHandler.class
com.healthmarketscience.jackcess.impl.KeyCache$KeyMap.class
com.healthmarketscience.jackcess.impl.MSISAMCryptCodecHandler.class
com.healthmarketscience.jackcess.impl.MSISAMCryptCodecHandler$1.class
com.healthmarketscience.jackcess.impl.BaseCryptCodecHandler$1.class
com.healthmarketscience.jackcess.impl.OfficeCryptCodecHandler$1.class
com.healthmarketscience.jackcess.impl.office.OfficeBinaryDocRC4Provider.class
com.healthmarketscience.jackcess.impl.office.StreamCipherProvider.class
com.healthmarketscience.jackcess.impl.office.XmlEncryptionDescriptor$AEADBlockCipherAdapter.class
com.healthmarketscience.jackcess.impl.office.XmlEncryptionDescriptor$Encrypt.class
com.healthmarketscience.jackcess.impl.office.XmlEncryptionDescriptor$1.class
com.healthmarketscience.jackcess.impl.office.BlockCipherProvider.class
com.healthmarketscience.jackcess.impl.office.XmlEncryptionDescriptor$HashAlgorithm.class
com.healthmarketscience.jackcess.impl.office.ECMAStandardEncryptionProvider.class
com.healthmarketscience.jackcess.impl.office.XmlEncryptionDescriptor$CipherChaining$5.class
com.healthmarketscience.jackcess.impl.office.XmlEncryptionDescriptor$CipherAlgorithm.class
com.healthmarketscience.jackcess.impl.office.XmlEncryptionDescriptor.class
com.healthmarketscience.jackcess.impl.office.XmlEncryptionDescriptor$PasswordEncryptor.class
com.healthmarketscience.jackcess.impl.office.NonStandardEncryptionProvider.class
com.healthmarketscience.jackcess.impl.office.EncryptionVerifier.class
com.healthmarketscience.jackcess.impl.office.XmlEncryptionDescriptor$CipherChaining$1.class
com.healthmarketscience.jackcess.impl.office.XmlEncryptionDescriptor$CipherChaining$4.class
com.healthmarketscience.jackcess.impl.office.AgileEncryptionProvider.class
com.healthmarketscience.jackcess.impl.office.XmlEncryptionDescriptor$CipherChaining$3.class
com.healthmarketscience.jackcess.impl.office.XmlEncryptionDescriptor$CipherChaining$2.class
com.healthmarketscience.jackcess.impl.office.XmlEncryptionDescriptor$CipherChaining.class
com.healthmarketscience.jackcess.impl.office.BlockCipherProvider$1.class
com.healthmarketscience.jackcess.impl.office.XmlEncryptionDescriptor$RC4BlockCipher.class
com.healthmarketscience.jackcess.impl.office.XmlEncryptionDescriptor$BlockCipherAdapter.class
com.healthmarketscience.jackcess.impl.office.EncryptionHeader.class
com.healthmarketscience.jackcess.impl.office.XmlEncryptionDescriptor$ECBBlockCipher.class
com.healthmarketscience.jackcess.impl.office.EncryptionHeader$HashAlgorithm.class
com.healthmarketscience.jackcess.impl.office.RC4CryptoAPIProvider.class
com.healthmarketscience.jackcess.impl.office.EncryptionHeader$CryptoAlgorithm.class
com.healthmarketscience.jackcess.impl.BaseJetCryptCodecHandler.class
com.healthmarketscience.jackcess.impl.BaseCryptCodecHandler.class
com.healthmarketscience.jackcess.impl.KeyCache$1.class
com.healthmarketscience.jackcess.impl.KeyCache.class
com.healthmarketscience.jackcess.util.StreamCipherFactory.class
com.healthmarketscience.jackcess.util.RC4EngineCompat$Factory.class
com.healthmarketscience.jackcess.util.RC4EngineLegacy$Factory.class
com.healthmarketscience.jackcess.util.StreamCipherCompat.class
com.healthmarketscience.jackcess.util.RC4EngineCompat.class
com.healthmarketscience.jackcess.util.RC4EngineLegacy.class
com.healthmarketscience.jackcess.cryptmodel.password.CTEncryption.class
com.healthmarketscience.jackcess.cryptmodel.password.package-info.class
com.healthmarketscience.jackcess.cryptmodel.password.CTPasswordKeyEncryptor.class
com.healthmarketscience.jackcess.cryptmodel.password.STPasswordKeyEncryptorUri.class
com.healthmarketscience.jackcess.cryptmodel.password.ObjectFactory.class
com.healthmarketscience.jackcess.cryptmodel.password.CTDataIntegrity.class
com.healthmarketscience.jackcess.cryptmodel.password.CTKeyEncryptors.class
com.healthmarketscience.jackcess.cryptmodel.password.CTKeyData.class
com.healthmarketscience.jackcess.cryptmodel.password.CTKeyEncryptor.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
jaxb-xjc-2.1.9.jar
/com.sun.xml.bind/jaxb-xjc/2.1.9
查看jaxb-xjc所有版本文件
jaxb-impl-2.1.9.jar
/com.sun.xml.bind/jaxb-impl/2.1.9
查看jaxb-impl所有版本文件
|