From 04b37d73a43b05026f1d2e07ce8db3d15dd8e555 Mon Sep 17 00:00:00 2001 From: Nick Zana Date: Wed, 10 May 2023 14:10:36 -0400 Subject: [PATCH] ctap2-proto: Add unsigned_extension_outputs to make::Response --- crates/ctap2-proto/src/authenticator/credential/make.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/ctap2-proto/src/authenticator/credential/make.rs b/crates/ctap2-proto/src/authenticator/credential/make.rs index 809dd24..cd4630d 100644 --- a/crates/ctap2-proto/src/authenticator/credential/make.rs +++ b/crates/ctap2-proto/src/authenticator/credential/make.rs @@ -91,4 +91,7 @@ pub struct Response { /// > Contains the `largeBlobKey` for the credential, if requested with the /// > `largeBlobKey` extension. pub large_blob_key: Option>, + /// > A map, keyed by extension identifiers, to unsigned outputs of + /// > extensions, if any. + pub unsigned_extension_outputs: Option>>, }