diff --git a/wit-modular/attestation.wit b/wit-modular/attestation.wit new file mode 100644 index 0000000..8dc84b8 --- /dev/null +++ b/wit-modular/attestation.wit @@ -0,0 +1,11 @@ +package elastic:attestation@0.1.0; + +interface hal { + /// Request a hardware-rooted attestation report using a provided nonce. + get-attestation: func(nonce: list) -> result, string>; +} + +world attest { + import hal; + export run: func(nonce: list); +} \ No newline at end of file