UNPKG

@ory/client

Version:

OpenAPI client for @ory/client

26 lines (18 loc) 1.18 kB
# CreateJsonWebKeySet Create JSON Web Key Set Request Body ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **alg** | **string** | JSON Web Key Algorithm The algorithm to be used for creating the key. Supports `RS256`, `ES256`, `ES512`, `HS512`, and `HS256`. | [default to undefined] **kid** | **string** | JSON Web Key ID The Key ID of the key to be created. | [default to undefined] **use** | **string** | JSON Web Key Use The \"use\" (public key use) parameter identifies the intended use of the public key. The \"use\" parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Valid values are \"enc\" and \"sig\". | [default to undefined] ## Example ```typescript import { CreateJsonWebKeySet } from '@ory/client'; const instance: CreateJsonWebKeySet = { alg, kid, use, }; ``` [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)