Table of Contents

Class EcdhKeyDeriveParams

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The EcdhKeyDeriveParams dictionary of the Web Crypto API represents the object that should be passed as the algorithm parameter into DeriveKey(Union187, CryptoKey, Union187, bool, List<KeyUsage>) and DeriveBits(Union187, CryptoKey, ulong?), when using the ECDH or X25519 algorithms.

[ToObject]
public class EcdhKeyDeriveParams : Algorithm
Inheritance
EcdhKeyDeriveParams
Inherited Members

Remarks

ECDH enables two people who each have a key pair consisting of a public and a private key to derive a shared secret. They exchange public keys and use the combination of their private key and the other entity&apos;s public key to derive a secret key that they — and no one else — share.

The parameters for ECDH deriveKey() therefore include the other entity&apos;s public key, which is combined with this entity&apos;s private key to derive the shared secret.

-DeriveKey(Union187, CryptoKey, Union187, bool, List<KeyUsage>).
-DeriveBits(Union187, CryptoKey, ulong?)

See also on MDN

Constructors

EcdhKeyDeriveParams()

public EcdhKeyDeriveParams()

Fields

Public

[Value("public")]
public required CryptoKey Public

Field Value

CryptoKey