-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add SrvResEnum.java to gdbigdata-accessmiddleserver
- Loading branch information
Showing
3 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
bigdata/gdbigdata-audit-csp-server/src/test/java/edu/jnu/service/SepdpProofServiceTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package edu.jnu.service; | ||
|
||
import org.springframework.beans.factory.annotation.Autowired; | ||
|
||
import java.math.BigInteger; | ||
import java.util.ArrayList; | ||
|
||
import static org.junit.jupiter.api.Assertions.*; | ||
|
||
class SepdpProofServiceTest { | ||
|
||
@org.junit.jupiter.api.Test | ||
void getMList() { | ||
} | ||
|
||
@org.junit.jupiter.api.Test | ||
void getSList() { | ||
} | ||
|
||
@org.junit.jupiter.api.Test | ||
void getGamma() { | ||
ArrayList<BigInteger> aList = new ArrayList<>(); | ||
aList.add(new BigInteger("1")); | ||
aList.add(new BigInteger("1")); | ||
ArrayList<BigInteger> bList = new ArrayList<>(); | ||
bList.add(new BigInteger("1")); | ||
bList.add(new BigInteger("0")); | ||
SepdpProofService sepdpProofService = new SepdpProofService(); | ||
BigInteger gamma = sepdpProofService.getGamma(aList,bList); | ||
|
||
System.out.println(gamma.toString()); | ||
} | ||
|
||
@org.junit.jupiter.api.Test | ||
void getAlpha() { | ||
} | ||
} |
Binary file added
BIN
+924 Bytes
bigdata/gdbigdata-dupless-csp-server/target/classes/edu/jnu/service/OSSFactory.class
Binary file not shown.
3 changes: 3 additions & 0 deletions
3
bigdata/gdbigdata-dupless-ks-server/target/maven-archiver/pom.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
artifactId=gdbigdata-dupless-ks-server | ||
groupId=edu.jnu | ||
version=1.0-SNAPSHOT |