forked from I2P_Developers/i2p.i2p
move siphash test from util to crypto
This commit is contained in:
@ -30,6 +30,7 @@ public class CryptoTestSuite {
|
||||
suite.addTestSuite(KeyGeneratorTest.class);
|
||||
suite.addTestSuite(SHA1HashTest.class);
|
||||
suite.addTestSuite(SHA256Test.class);
|
||||
suite.addTestSuite(SipHashInlineTest.class);
|
||||
|
||||
return suite;
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
package net.i2p.util;
|
||||
package net.i2p.crypto;
|
||||
|
||||
/*
|
||||
* As pulled from https://github.com/nahi/siphash-java-inline
|
@ -19,7 +19,6 @@ public class UtilTestSuite {
|
||||
suite.addTestSuite(ResettableGZIPOutputStreamTest.class);
|
||||
suite.addTestSuite(ReusableGZIPInputStreamTest.class);
|
||||
suite.addTestSuite(ReusableGZIPOutputStreamTest.class);
|
||||
suite.addTestSuite(SipHashInlineTest.class);
|
||||
|
||||
return suite;
|
||||
}
|
||||
|
Reference in New Issue
Block a user