[REMOVED] Java code no longer depends on ciphers.plist and net.sf.plist. [ADDED] Java code now explicitly defines the algorithm's templates. [FIXED] Java code now properly counts the site name and user name's byte length. [FIXED] Java code now explicitly uses 32-bit integers.
57 lines
1.8 KiB
XML
57 lines
1.8 KiB
XML
<?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>
|
|
|
|
<!-- PROJECT METADATA -->
|
|
<parent>
|
|
<groupId>com.lyndir.masterpassword</groupId>
|
|
<artifactId>masterpassword</artifactId>
|
|
<version>GIT-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<name>Master Password Algorithm Implementation</name>
|
|
<description>The implementation of the Master Password algorithm</description>
|
|
|
|
<groupId>com.lyndir.masterpassword</groupId>
|
|
<artifactId>masterpassword-algorithm</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<!-- DEPENDENCY MANAGEMENT -->
|
|
<dependencies>
|
|
|
|
<!-- PROJECT REFERENCES -->
|
|
<dependency>
|
|
<groupId>com.lyndir.lhunath.opal</groupId>
|
|
<artifactId>opal-system</artifactId>
|
|
<version>1.6-p6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.lyndir.lhunath.opal</groupId>
|
|
<artifactId>opal-crypto</artifactId>
|
|
<version>1.6-p6</version>
|
|
</dependency>
|
|
|
|
<!-- EXTERNAL DEPENDENCIES -->
|
|
<dependency>
|
|
<groupId>com.lambdaworks</groupId>
|
|
<artifactId>scrypt</artifactId>
|
|
<version>1.4.0</version>
|
|
</dependency>
|
|
|
|
<!-- TESTING -->
|
|
<dependency>
|
|
<groupId>org.testng</groupId>
|
|
<artifactId>testng</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|