net/net-security/src/test/java/module-info.java

14 lines
568 B
Java

module org.xbib.net.security.test {
requires java.logging;
requires transitive org.junit.jupiter.api;
requires org.hamcrest;
requires org.xbib.net.security;
requires org.bouncycastle.provider;
exports org.xbib.net.security.test;
exports org.xbib.net.security.test.ed25519;
exports org.xbib.net.security.test.eddsa;
exports org.xbib.net.security.test.eddsa.math;
exports org.xbib.net.security.test.eddsa.math.bigint;
exports org.xbib.net.security.test.eddsa.math.ed25519;
exports org.xbib.net.security.test.eddsa.spec;
}