-
Notifications
You must be signed in to change notification settings - Fork 17
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
SDK should point to rust_rsi instead of rsi_el0 #382
Comments
Both the islet-sdk and islet-cli code are still using the old IMHO, it would be better to deprecated the islet-cli, and if the requirement is still valid, incorporate it into |
@L0czek |
It would be better to deprecate |
#367 already does that. |
It seems that rsi_el0 is deprecated and rust-rsi in remote-attestation repo has replaced rsi-el0.
rsictl, a tool to test attest and verify, points to rust-rsi and thus works well, while islet-cli pointing to rsi-el0 doesn't work out (error log: Failed to get attestation report).
This is because,
sdk is using
rsi_el0::attestation_token(&challenge)
which is incompatible with the current rsi.ko.SDK should be updated like
rust_rsi::attestation_token(&challenge)
as in rsictl.The text was updated successfully, but these errors were encountered: