-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #375 from 0xPolygonID/develop
Release v2.2.9
- Loading branch information
Showing
188 changed files
with
5,955 additions
and
1,986 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: 'Close stale issues and PR' | ||
on: | ||
schedule: | ||
- cron: '00 05 * * *' | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v8 | ||
with: | ||
stale-issue-message: 'This issue is stale because it has been open 20 days with no activity. Remove stale label or comment or this will be closed in 10 days.' | ||
close-issue-message: 'This issue was closed because it has been stalled for 10 days with no activity.' | ||
days-before-stale: 20 | ||
days-before-close: 10 | ||
days-before-pr-stale: -1 | ||
days-before-pr-close: -1 |
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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
ext { | ||
sdkVersion = '2.2.6' | ||
sdkVersion = '2.2.9' | ||
} |
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
Binary file not shown.
Binary file modified
BIN
-238 KB
(98%)
android/src/main/jniLibs/arm64-v8a/libwitnesscalc_authV2.so
100755 → 100644
Binary file not shown.
Binary file modified
BIN
-57.2 KB
(99%)
android/src/main/jniLibs/arm64-v8a/libwitnesscalc_credentialAtomicQueryMTPV2.so
100755 → 100644
Binary file not shown.
Binary file modified
BIN
-432 KB
(97%)
android/src/main/jniLibs/arm64-v8a/libwitnesscalc_credentialAtomicQueryMTPV2OnChain.so
100755 → 100644
Binary file not shown.
Binary file modified
BIN
-210 KB
(98%)
android/src/main/jniLibs/arm64-v8a/libwitnesscalc_credentialAtomicQuerySigV2.so
100755 → 100644
Binary file not shown.
Binary file modified
BIN
-434 KB
(97%)
android/src/main/jniLibs/arm64-v8a/libwitnesscalc_credentialAtomicQuerySigV2OnChain.so
100755 → 100644
Binary file not shown.
Binary file added
BIN
+11.1 MB
android/src/main/jniLibs/arm64-v8a/libwitnesscalc_credentialAtomicQueryV3.so
Binary file not shown.
Binary file added
BIN
+13.7 MB
android/src/main/jniLibs/arm64-v8a/libwitnesscalc_credentialAtomicQueryV3OnChain.so
Binary file not shown.
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
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
39 changes: 39 additions & 0 deletions
39
android/src/main/jniLibs/arm64-v8a/witnesscalc_credentialAtomicQueryV3.h
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,39 @@ | ||
#ifndef WITNESSCALC_CREDENTIALATOMICQUERYV3_H | ||
#define WITNESSCALC_CREDENTIALATOMICQUERYV3_H | ||
|
||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#define WITNESSCALC_OK 0x0 | ||
#define WITNESSCALC_ERROR 0x1 | ||
#define WITNESSCALC_ERROR_SHORT_BUFFER 0x2 | ||
|
||
/** | ||
* | ||
* @return error code: | ||
* WITNESSCALC_OK - in case of success. | ||
* WITNESSCALC_ERROR - in case of an error. | ||
* | ||
* On success wtns_buffer is filled with witness data and | ||
* wtns_size contains the number bytes copied to wtns_buffer. | ||
* | ||
* If wtns_buffer is too small then the function returns WITNESSCALC_ERROR_SHORT_BUFFER | ||
* and the minimum size for wtns_buffer in wtns_size. | ||
* | ||
*/ | ||
|
||
int | ||
witnesscalc_credentialAtomicQueryV3( | ||
const char *circuit_buffer, unsigned long circuit_size, | ||
const char *json_buffer, unsigned long json_size, | ||
char *wtns_buffer, unsigned long *wtns_size, | ||
char *error_msg, unsigned long error_msg_maxsize); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
|
||
#endif // WITNESSCALC_CREDENTIALATOMICQUERYV3_H |
39 changes: 39 additions & 0 deletions
39
android/src/main/jniLibs/arm64-v8a/witnesscalc_credentialAtomicQueryV3OnChain.h
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,39 @@ | ||
#ifndef WITNESSCALC_CREDENTIALATOMICQUERYV3ONCHAIN_H | ||
#define WITNESSCALC_CREDENTIALATOMICQUERYV3ONCHAIN_H | ||
|
||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#define WITNESSCALC_OK 0x0 | ||
#define WITNESSCALC_ERROR 0x1 | ||
#define WITNESSCALC_ERROR_SHORT_BUFFER 0x2 | ||
|
||
/** | ||
* | ||
* @return error code: | ||
* WITNESSCALC_OK - in case of success. | ||
* WITNESSCALC_ERROR - in case of an error. | ||
* | ||
* On success wtns_buffer is filled with witness data and | ||
* wtns_size contains the number bytes copied to wtns_buffer. | ||
* | ||
* If wtns_buffer is too small then the function returns WITNESSCALC_ERROR_SHORT_BUFFER | ||
* and the minimum size for wtns_buffer in wtns_size. | ||
* | ||
*/ | ||
|
||
int | ||
witnesscalc_credentialAtomicQueryV3OnChain( | ||
const char *circuit_buffer, unsigned long circuit_size, | ||
const char *json_buffer, unsigned long json_size, | ||
char *wtns_buffer, unsigned long *wtns_size, | ||
char *error_msg, unsigned long error_msg_maxsize); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
|
||
#endif // WITNESSCALC_CREDENTIALATOMICQUERYV3ONCHAIN_H |
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
Oops, something went wrong.