-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
created new parameterized unit tests
- Loading branch information
1 parent
47b0876
commit d95df7d
Showing
10 changed files
with
214 additions
and
12 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
2 changes: 1 addition & 1 deletion
2
src/main/java/io/github/astrapi69/mystic/crypt/decorator/package-info.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 @@ | ||
/** | ||
* This package provides classes for decorate crypt objects | ||
* This package provides classes for decorating and undecorating cryptographic objects. | ||
*/ | ||
package io.github.astrapi69.mystic.crypt.decorator; |
7 changes: 3 additions & 4 deletions
7
src/main/java/io/github/astrapi69/mystic/crypt/gm/package-info.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,7 +1,6 @@ | ||
/** | ||
* This package provides a utility class that can sign urls for google maps with the private key. | ||
This class is inspired | ||
from this | ||
<a href= "https://github.com/googlemaps/url-signing/blob/gh-pages/UrlSigner.java">class</a> | ||
* This package provides a utility class that can sign urls for google maps with the private key. | ||
* This class is inspired from this | ||
* <a href= "https://github.com/googlemaps/url-signing/blob/gh-pages/UrlSigner.java">class</a> | ||
*/ | ||
package io.github.astrapi69.mystic.crypt.gm; |
5 changes: 3 additions & 2 deletions
5
src/main/java/io/github/astrapi69/mystic/crypt/obfuscation/character/package-info.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,5 +1,6 @@ | ||
/** | ||
* This package provides classes that obfuscate text. The disentangle process is still experimental. <br> | ||
Note: use the disentangle process at your own risk. | ||
* This package provides classes that obfuscate text. The disentangle process is still experimental. | ||
* <br> | ||
* Note: use the disentangle process at your own risk. | ||
*/ | ||
package io.github.astrapi69.mystic.crypt.obfuscation.character; |
3 changes: 2 additions & 1 deletion
3
src/main/java/io/github/astrapi69/mystic/crypt/ssl/package-info.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,5 @@ | ||
/** | ||
* This package provides a class with factory methods for create TrustManager array objects and KeyManager array objects. | ||
* This package provides a class with factory methods for create TrustManager array objects and | ||
* KeyManager array objects. | ||
*/ | ||
package io.github.astrapi69.mystic.crypt.ssl; |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
input,prefix,suffix,expected | ||
Hello,<<,>>,<<Hello>> | ||
World,[[,]],[[World]] |
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 @@ | ||
input,prefix,suffix,expected | ||
Hello,<<,>>,<<Hello>> | ||
World,[[,]],[[World]] |
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 @@ | ||
input,prefix,suffix,expected | ||
<<Hello>>,<<,>>,Hello | ||
[[World]],[[,]],World |
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 @@ | ||
input,prefix,suffix,expected | ||
<<Hello>>,<<,>>,Hello | ||
[[World]],[[,]],World |