Skip to content

Commit

Permalink
Finish issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Firstyear committed Nov 22, 2024
1 parent c6114e9 commit fda3dd9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion fido-mds/src/mds.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ pub struct EcdaaAnchor {
pub x: String,
/// base64url encoding of the result of ECPoint2ToB of the ECPoint2 Y = P_2^yY=P
/// See FIDOEcdaaAlgorithm for the definition of ECPoint2ToB.
#[serde(rename = "X")]
#[serde(rename = "Y")]
pub y: String,
/// base64url encoding of the result of BigNumberToB(cc). See section "Issuer Specific ECDAA Parameters" in FIDOEcdaaAlgorithm for an explanation of cc. See FIDOEcdaaAlgorithm for the definition of BigNumberToB.
pub c: String,
Expand Down
2 changes: 2 additions & 0 deletions webauthn-rs-proto/src/wasm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ extern "C" {
pub type PublicKeyCredentialExt;

#[wasm_bindgen(static_method_of = PublicKeyCredentialExt, js_class = "PublicKeyCredential", js_name = isConditionalMediationAvailable, catch)]
/// Is Conditional Mediation Available
pub fn is_conditional_mediation_available() -> Result<::js_sys::Promise, JsValue>;

#[wasm_bindgen(static_method_of = PublicKeyCredentialExt, js_class = "PublicKeyCredential", js_name = isExternalCTAP2SecurityKeySupported, catch)]
/// Is External Ctap2 SecurityKey Supported
pub fn is_external_ctap2_securitykey_supported() -> Result<::js_sys::Promise, JsValue>;
}

0 comments on commit fda3dd9

Please sign in to comment.