VT Crypt Library.
Library for performing common cryptographic operations.
Here is the list of declaration for vt-crypt. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>edu.vt.middleware</groupId> <artifactId>vt-crypt</artifactId> <version>2.1.4</version> </dependency>
If you think this Maven repository POM file listing for vt-crypt is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Apache 2
URL: http://www.apache.org/licenses/LICENSE-2.0.txtName:GNU Lesser General Public License
URL: http://www.gnu.org/licenses/lgpl-3.0.txt.
The vt-crypt-2.1.4 has 5 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Security | bcprov-jdk15 1.45 The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5. | 18 |
Console | commons-cli 1.2 Commons CLI provides a simple API for presenting, processing and validating a command line interface. | 305 |
Log | commons-logging 1.1.1 Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems. | 1143 |
Build | ant 1.8.1 Apache Ant | 83 |
The following plugins are used in the vt-crypt-2.1.4.jar
The following packages are defined in the vt-crypt-2.1.4.jar
edu.vt.middleware.crypt edu.vt.middleware.crypt.asymmetric edu.vt.middleware.crypt.digest edu.vt.middleware.crypt.io edu.vt.middleware.crypt.pbe edu.vt.middleware.crypt.pkcs edu.vt.middleware.crypt.signature edu.vt.middleware.crypt.symmetric edu.vt.middleware.crypt.tasks edu.vt.middleware.crypt.util edu.vt.middleware.crypt.x509 edu.vt.middleware.crypt.x509.types
Here is the content of the POM file.
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>edu.vt.middleware</groupId> <artifactId>vt-crypt</artifactId> <packaging>jar</packaging> <version>2.1.4</version> <name>VT Crypt Library</name> <description>Library for performing common cryptographic operations</description> <url>http://code.google.com/p/vt-middleware/wiki/vtcrypt</url> <issueManagement> <system>Google Code</system> <url>http://code.google.com/p/vt-middleware/issues/list</url> </issueManagement> <mailingLists> <mailingList> <name>vt-middleware-users</name> <subscribe>vt-middleware-users+subscribe@googlegroups.com</subscribe> <unsubscribe>vt-middleware-users+unsubscribe@googlegroups.com</unsubscribe> <post>vt-middleware-users@googlegroups.com</post> <archive>http://groups.google.com/group/vt-middleware-users</archive> </mailingList> <mailingList> <name>vt-middleware-dev</name> <subscribe>vt-middleware-dev+subscribe@googlegroups.com</subscribe> <unsubscribe>vt-middleware-dev+unsubscribe@googlegroups.com</unsubscribe> <post>vt-middleware-dev@googlegroups.com</post> <archive>http://groups.google.com/group/vt-middleware-dev</archive> </mailingList> </mailingLists> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> <license> <name>GNU Lesser General Public License</name> <url>http://www.gnu.org/licenses/lgpl-3.0.txt</url> </license> </licenses> <scm> <connection>scm:svn:https://vt-middleware.googlecode.com/svn/vt-crypt/trunk</connection> <url>http://vt-middleware.googlecode.com/svn/vt-crypt/trunk</url> </scm> <properties> <project.build.sourceEncoding>iso-8859-1</project.build.sourceEncoding> <checkstyle.dir>${basedir}/src/main/checkstyle</checkstyle.dir> <testng.dir>${basedir}/src/test/testng</testng.dir> <assembly.dir>${basedir}/src/main/assembly</assembly.dir> </properties> <dependencies> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15</artifactId> <version>1.45</version> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.8.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>5.14</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-info</id> <phase>validate</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/target/package-info</outputDirectory> <resources> <resource> <directory>${basedir}</directory> <filtering>true</filtering> <includes> <include>README*</include> </includes> </resource> <resource> <directory>${basedir}</directory> <filtering>false</filtering> <includes> <include>LICENSE*</include> <include>NOTICE*</include> <include>CHANGELOG*</include> <include>pom.xml</include> </includes> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-scripts</id> <phase>validate</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/target/bin</outputDirectory> <resources> <resource> <directory>bin</directory> <filtering>true</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <fork>true</fork> <debug>true</debug> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> <compilerArgument>-Xlint:unchecked</compilerArgument> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.5</version> <configuration> <configLocation>${checkstyle.dir}/checkstyle_checks.xml</configLocation> <headerLocation>${checkstyle.dir}/checkstyle_header</headerLocation> <suppressionsLocation>${checkstyle.dir}/suppressions.xml</suppressionsLocation> <includeTestSourceDirectory>true</includeTestSourceDirectory> <failsOnError>false</failsOnError> <outputFileFormat>plain</outputFileFormat> </configuration> <executions> <execution> <id>checkstyle</id> <phase>compile</phase> <goals> <goal>checkstyle</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <suiteXmlFiles> <suiteXmlFile>${testng.dir}/testng.xml</suiteXmlFile> </suiteXmlFiles> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <links> <link>http://java.sun.com/j2se/1.5.0/docs/api</link> </links> <bottom><![CDATA[<i>Copyright © 2003-2011 Virginia Tech. All Rights Reserved.</i>]]></bottom> </configuration> <executions> <execution> <id>javadoc</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>source</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>jar</id> <phase>package</phase> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <appendAssemblyId>true</appendAssemblyId> <descriptors> <descriptor>${assembly.dir}/vt-middleware.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> <extensions> <extension> <groupId>org.jvnet.wagon-svn</groupId> <artifactId>wagon-svn</artifactId> <version>1.9</version> </extension> </extensions> </build> <profiles> <profile> <id>sign-artifacts</id> <activation> <property> <name>sign</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>package</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>