Class PubkeyCredParam
Definition
- Assembly:
- Tizen.Security.WebAuthn.dll
Parameter for credential generation.
public class PubkeyCredParam
- Inheritance
-
objectPubkeyCredParam
Remarks
Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialparameters
Constructors
View SourcePubkeyCredParam(PubkeyCredType, CoseAlgorithm)
Initializes a new instance of the PubkeyCredParam class.
Declaration
public PubkeyCredParam(PubkeyCredType type, CoseAlgorithm alg)
Parameters
Type | Name | Description |
---|---|---|
PubkeyCredType | type | Well-known credential type specifying a credential to create. |
CoseAlgorithm | alg | Well-known COSE algorithm specifying the algorithm to use for the credential. |
Remarks
Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialparameters
Properties
View SourceAlg
Gets the algotithm used for the credential.
Declaration
public CoseAlgorithm Alg { get; init; }
Property Value
Type | Description |
---|---|
CoseAlgorithm | Well-known COSE algorithm specifying the algorithm to use for the credential. |
Remarks
Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialparameters
Type
Gets the type of the credential to create.
Declaration
public PubkeyCredType Type { get; init; }
Property Value
Type | Description |
---|---|
PubkeyCredType | Well-known credential type specifying the credential to create. |
Remarks
Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialparameters