-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(cli): Assertion signing keys and verification #398
Conversation
If these changes look good, signoff on them with:
If they aren't any good, please remove them with:
|
If these changes look good, signoff on them with:
If they aren't any good, please remove them with:
|
…df/web-sdk into assertion-verification-cli
If these changes look good, signoff on them with:
If they aren't any good, please remove them with:
|
If these changes look good, signoff on them with:
If they aren't any good, please remove them with:
|
If these changes look good, signoff on them with:
If they aren't any good, please remove them with:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor spelling error, otherwise good
If these changes look good, signoff on them with:
If they aren't any good, please remove them with:
|
Signed-off-by: Elizabeth Healy <ehealy@virtru.com>
Signed-off-by: Elizabeth Healy <ehealy@virtru.com>
Signed-off-by: Elizabeth Healy <ehealy@virtru.com>
Signed-off-by: Elizabeth Healy <ehealy@virtru.com>
Signed-off-by: Elizabeth Healy <ehealy@virtru.com>
Signed-off-by: Elizabeth Healy <ehealy@virtru.com>
Signed-off-by: Elizabeth Healy <ehealy@virtru.com>
Signed-off-by: Elizabeth Healy <ehealy@virtru.com>
Signed-off-by: Elizabeth Healy <ehealy@virtru.com>
Signed-off-by: Elizabeth Healy <ehealy@virtru.com>
- Removes axios and XHR support - all requests now use fetch - Removes `v1` path support for rewrap and public key - Removes `entityObject` - Removes AppIdAuthProvider - Removes `upsert` Signed-off-by: Elizabeth Healy <ehealy@virtru.com>
This is because indicate that v 0.2.x and later will: - not support v1 (entity object, etc.) - will add a simplified and unified API for TDF manipulation, sharing patterns between different container formats - other radical changes tbd Signed-off-by: Elizabeth Healy <ehealy@virtru.com>
- For code in the src/tdf folder, replace all default exports with named ones. - Should prevent confusion when grepping for code - While here, also deletes dead/unused code as found Signed-off-by: Elizabeth Healy <ehealy@virtru.com>
We already have an internal library that provides this Signed-off-by: Elizabeth Healy <ehealy@virtru.com>
This removes a dependency on streamsaver.js. The equivalent function to this method is now viewable in the `App.tsx` file: ```ts async function toFile( stream: ReadableStream<Uint8Array>, filepath = 'download.tdf', options?: { encoding?: BufferEncoding; signal?: AbortSignal; } ): Promise<void> { const fileStream = streamsaver.createWriteStream(filepath, { writableStrategy: { highWaterMark: 1 }, readableStrategy: { highWaterMark: 1 }, }); return stream.pipeTo(fileStream, options); } ``` Signed-off-by: Elizabeth Healy <ehealy@virtru.com>
To prevents loops in package imports with new clients loading them Signed-off-by: Elizabeth Healy <ehealy@virtru.com>
…df/web-sdk into assertion-verification-cli
ignore extra commits, im trying to sign the autoformat unverified ones |
|
moved to different PR bc unsigned commits |
Add option to the cli to pass in assertion verification keys, handles assertion signing keys passed in on encrypt