Feature/32 encrypt bite2 with aad#33
Merged
olehnikolaiev merged 8 commits intodevelopfrom Feb 10, 2026
Merged
Conversation
Contributor
DmytroNazarenko
left a comment
There was a problem hiding this comment.
- Need to bump version
- Need to merge current develop into beta before merging this PR
README.md
Outdated
|
|
||
| ### `bite.encryptMessageForCTX(message, scAddress)` | ||
|
|
||
| Encrypts a raw hex-encoded message specifically for Confidential Transactions (CTX). This is a convenience method that sets the `scAddress` as `AADTE`. |
Contributor
There was a problem hiding this comment.
Suggest to add more details about Additional Authenticated Data (its purpose; what exactly should we pass as ctxSubmitterAddress)
tests/README.md
Outdated
| 2. **Encrypted Data Submission**: | ||
| * Generates 5 random numbers (range 50-249). | ||
| * Encrypts each number using `bite.encryptMessage(hexValue)`. | ||
| * Encrypts each number using `bite.encryptMessageForCtx(hexValue, contractAddress)`. |
src/core/bite.ts
Outdated
| /** | ||
| * Encrypt a hex-encoded message using BLS public key for CTX. | ||
| * @param message - Hex string (with or without 0x). | ||
| * @param scAddress - Smart Contract Address for AADTE. |
Contributor
There was a problem hiding this comment.
Suggest to rename parameter to ctxSubmitterAddress
DmytroNazarenko
approved these changes
Feb 10, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
fixes #32
update
t-encryptto allow passing optionalAADfor threshold encryptionadd
encryptMessageForCTXmethodupdate
skaledversion in testsupdate BITE2 tests
update README