Keyops
Key_ops, often written as key_ops, is a parameter used in JSON Web Key (JWK) representations to indicate the cryptographic operations for which a key is intended to be used. It is commonly included in a JWK or JWKS (JSON Web Key Set) to inform applications, key management systems, or hardware security modules about permissible uses.
The value of key_ops is an array of strings, each describing a supported operation. The standard set
Key_ops is often used alongside other JWK fields that describe usage, such as alg (the intended algorithm)
Example: a JWK with key_ops: ["encrypt","decrypt"] indicates the key is suitable for encryption and decryption operations,