Share via


KeyOperation type

JSON web key operations. For more information, see JsonWebKeyOperation.
<xref:KnownJsonWebKeyOperation> can be used interchangeably with JsonWebKeyOperation, this enum contains the known values that the service supports.

Known values supported by the service

encrypt: Indicates that the key can be used to encrypt.
decrypt: Indicates that the key can be used to decrypt.
sign: Indicates that the key can be used to sign.
verify: Indicates that the key can be used to verify.
wrapKey: Indicates that the key can be used to wrap another key.
unwrapKey: Indicates that the key can be used to unwrap another key.
import: Indicates that the key can be imported during creation.
export: Indicates that the private component of the key can be exported.

type KeyOperation = string