You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the function GetConfComputeGpuAttestationReport does currently not accept a nonce for the report generation. This is insecure for CC use cases because an attacker might record a valid report once and replay it to a victim multiple times/on different machines, potentially with a modified GPU attached.
We have implemented this in our fork here. This works fine so it seems to be supported by the runtime.
Could you update that function?
Thanks,
Otto
The text was updated successfully, but these errors were encountered:
I checked with the NVML team and they confirmed that if you pass a nonce in the calling struct to the underlying C API, then it will be used by the driver (rather than generating one on the fly).
I'll need to think about the right API for this because we don't like to stray too far from the underlying C API (with the exception of transforming inputs meant as return values to actual return values). In this case though, the argument to the C API is both a valid input AND a place to store the return value...
Hey,
the function
GetConfComputeGpuAttestationReport
does currently not accept a nonce for the report generation. This is insecure for CC use cases because an attacker might record a valid report once and replay it to a victim multiple times/on different machines, potentially with a modified GPU attached.We have implemented this in our fork here. This works fine so it seems to be supported by the runtime.
Could you update that function?
Thanks,
Otto
The text was updated successfully, but these errors were encountered: