This repository has been archived by the owner on Dec 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Refine client domain * Refine user domain entity * Depend on lint to bail CI early * Refine app * Cleanup app ifaces * Refine error handling on application * Cleanup enclaverepo * Refine error handling on enclaverepo * Fix dependency between enclaverepo and remote * Move remote-related encryption to remote module * Refine error handling on remote adapter * Partially refine rest http server port * Fix sync bug * Fix test suites * Improve golangci-lint * Refine rest api returned errors * Organize client rest api file structure & cleanup middleware * Parallelize all tests * Add some error handling on keystores/invitations * Remove metrics endpoint * Fix lint * Refine applications startup * Remove config pkg * Fix shutdown error * Refine shared secrets calculations * Move keypair generation to enclave * Fix invitations count on sidebar * Refine invitations page statuses * Cleanup routers * Some more error handling * Silent authentication cronjob
- Loading branch information
Showing
83 changed files
with
2,166 additions
and
2,616 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
run: | ||
timeout: 3m | ||
concurrency: 32 | ||
skip-dirs: | ||
- ui |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -10,6 +10,8 @@ import ( | |
) | ||
|
||
func TestPKCS7PadUnpad(t *testing.T) { | ||
t.Parallel() | ||
|
||
s := "" | ||
|
||
for i := 0; i < 100; i++ { | ||
|
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.