UNPKG

@guarani/jose

Version:

Implementation of the RFCs of the JOSE Working Group.

5 lines (4 loc) 205 B
/** * Operation for which the JSON Web Key is intended to be used. */ export declare type KeyOperation = 'sign' | 'verify' | 'encrypt' | 'decrypt' | 'wrapKey' | 'unwrapKey' | 'deriveKey' | 'deriveBits';