-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
104 additions
and
53 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -3,11 +3,31 @@ | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>tech.tapsi.libs.hiss</groupId> | ||
<groupId>io.github.tap30</groupId> | ||
<artifactId>hiss</artifactId> | ||
<version>0.11.1</version> | ||
<name>Hiss</name> | ||
<description>A simple field-level encryption library</description> | ||
<developers> | ||
<developer> | ||
<id>mkay1375</id> | ||
<name>Mostafa Kazemi</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
</developers> | ||
<licenses> | ||
<license> | ||
<name>Apache-2.0</name> | ||
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<url>https://github.com/Tap30/hiss</url> | ||
<scm> | ||
<connection>https://github.com/Tap30/hiss.git</connection> | ||
<tag>HEAD</tag> | ||
<url>https://github.com/Tap30/hiss</url> | ||
</scm> | ||
<properties> | ||
<java.version>11</java.version> | ||
<maven.compiler.source>11</maven.compiler.source> | ||
|
@@ -44,21 +64,61 @@ | |
</dependency> | ||
</dependencies> | ||
|
||
<distributionManagement> | ||
<repository> | ||
<id>github</id> | ||
<name>GitHub Packages</name> | ||
<url>https://maven.pkg.github.com/Tap30/hiss</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.sonatype.central</groupId> | ||
<artifactId>central-publishing-maven-plugin</artifactId> | ||
<version>0.4.0</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<publishingServerId>central</publishingServerId> | ||
<tokenAuth>true</tokenAuth> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>3.2.5</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>3.2.1</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar-no-fork</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>3.1.1</version> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>3.2.4</version> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
.../java/tech/tapsi/libs/hiss/Encrypted.java → .../java/io/github/tap30/hiss/Encrypted.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
2 changes: 1 addition & 1 deletion
2
...tech/tapsi/libs/hiss/EncryptedInside.java → ...io/github/tap30/hiss/EncryptedInside.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
4 changes: 2 additions & 2 deletions
4
src/main/java/tech/tapsi/libs/hiss/Hiss.java → src/main/java/io/github/tap30/hiss/Hiss.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
6 changes: 3 additions & 3 deletions
6
...a/tech/tapsi/libs/hiss/HissEncryptor.java → ...a/io/github/tap30/hiss/HissEncryptor.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
2 changes: 1 addition & 1 deletion
2
...ava/tech/tapsi/libs/hiss/HissFactory.java → ...ava/io/github/tap30/hiss/HissFactory.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package tech.tapsi.libs.hiss; | ||
package io.github.tap30.hiss; | ||
|
||
public class HissFactory { | ||
|
||
|
6 changes: 3 additions & 3 deletions
6
.../tapsi/libs/hiss/HissObjectEncryptor.java → ...ithub/tap30/hiss/HissObjectEncryptor.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
6 changes: 3 additions & 3 deletions
6
.../tech/tapsi/libs/hiss/HissProperties.java → .../io/github/tap30/hiss/HissProperties.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
2 changes: 1 addition & 1 deletion
2
...s/hiss/HissPropertiesFromEnvProvider.java → ...0/hiss/HissPropertiesFromEnvProvider.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package tech.tapsi.libs.hiss; | ||
package io.github.tap30.hiss; | ||
|
||
import java.util.HashMap; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...psi/libs/hiss/HissPropertiesProvider.java → ...ub/tap30/hiss/HissPropertiesProvider.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
2 changes: 1 addition & 1 deletion
2
.../tapsi/libs/hiss/utils/AlgorithmSpec.java → ...ithub/tap30/hiss/utils/AlgorithmSpec.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package tech.tapsi.libs.hiss.utils; | ||
package io.github.tap30.hiss.utils; | ||
|
||
import lombok.Value; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...apsi/libs/hiss/utils/EncryptionUtils.java → ...hub/tap30/hiss/utils/EncryptionUtils.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
2 changes: 1 addition & 1 deletion
2
...h/tapsi/libs/hiss/utils/HashingUtils.java → ...github/tap30/hiss/utils/HashingUtils.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package tech.tapsi.libs.hiss.utils; | ||
package io.github.tap30.hiss.utils; | ||
|
||
|
||
import javax.crypto.Mac; | ||
|
2 changes: 1 addition & 1 deletion
2
.../tech/tapsi/libs/hiss/utils/KeyUtils.java → .../io/github/tap30/hiss/utils/KeyUtils.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
2 changes: 1 addition & 1 deletion
2
...apsi/libs/hiss/utils/ReflectionUtils.java → ...hub/tap30/hiss/utils/ReflectionUtils.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
2 changes: 1 addition & 1 deletion
2
...ch/tapsi/libs/hiss/utils/StringUtils.java → .../github/tap30/hiss/utils/StringUtils.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package tech.tapsi.libs.hiss.utils; | ||
package io.github.tap30.hiss.utils; | ||
|
||
public class StringUtils { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...va/tech/tapsi/libs/hiss/BaseHissTest.java → ...va/io/github/tap30/hiss/BaseHissTest.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package tech.tapsi.libs.hiss; | ||
package io.github.tap30.hiss; | ||
|
||
import org.junit.jupiter.api.BeforeEach; | ||
|
||
|
5 changes: 1 addition & 4 deletions
5
...t/java/tech/tapsi/libs/hiss/HissTest.java → ...t/java/io/github/tap30/hiss/HissTest.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
5 changes: 1 addition & 4 deletions
5
...HissTest_EncryptedInsideOnListAndSet.java → ...HissTest_EncryptedInsideOnListAndSet.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
5 changes: 1 addition & 4 deletions
5
...ssTest_EncryptedInsideOnSimpleObject.java → ...ssTest_EncryptedInsideOnSimpleObject.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
2 changes: 1 addition & 1 deletion
2
.../libs/hiss/utils/ReflectionUtilsTest.java → ...tap30/hiss/utils/ReflectionUtilsTest.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package tech.tapsi.libs.hiss.utils; | ||
package io.github.tap30.hiss.utils; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
|