-
Notifications
You must be signed in to change notification settings - Fork 4
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
1 parent
04986dc
commit eafb437
Showing
5 changed files
with
34 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# DecryptionKey | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
|---------------|---------------|-----------------------------------------------------------------------------------|-------| | ||
| **Key** | **byte[]** | Key generated in dashboard that will be used to decrypt sealed result | | | ||
| **Algorithm** | **Algorithm** | Algorithm to use for decryption. Currently only "aes-256-gcm" value is supported. | | | ||
|
||
|
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,12 @@ | ||
# Sealed | ||
|
||
## **UnsealEventsResponse** | ||
> EventResponse unsealEventResponse(sealed []byte, keys []DecryptionKey) | ||
Decrypts the sealed response with provided keys. | ||
### Required Parameters | ||
|
||
| Name | Type | Description | Notes | | ||
|------------|---------------------|------------------------------------------------------------------------------------------|-------| | ||
| **sealed** | **byte[]** | Base64 encoded sealed data | | | ||
| **keys** | **DecryptionKey[]** | Decryption keys. The SDK will try to decrypt the result with each key until it succeeds. | | |
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