-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Made VerifyAttestationInformation interface asynchronous #12657
Conversation
Retrieve vendorId and ProductId from Basic Information Clusterconnectedhomeip/src/credentials/examples/DefaultDeviceAttestationVerifier.cpp Lines 302 to 312 in 82ae5b2
This comment was generated by todo based on a
|
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
This pull request seems to be making all sorts of unrelated changes and include all sorts of unrelated commits. Please rebase on top of tip. |
…lt will be returned in the callback.
bcc7962
to
401eac7
Compare
PR #12657: Size comparison from afec776 to 401eac7 Increases (1 build for linux)
Full report (31 builds for efr32, esp32, k32w, linux, mbed, nrfconnect, p6, qpg, telink)
|
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
Waiting on approvals to merge this PR |
Callback::Callback isn't type safe, and also has a deleted copy constructor that is an artifact that in some contexts allows Callbacks to be prematurely canceled after being enqueued. But that facility isn't used here. A delegate interface would have been a better choice. |
…lt will be returned in the callback. (project-chip#12657)
Problem
Change overview
Testing