/**
 * @interface Keyset
 * @description Interface for Keyset
 */
export interface Keyset {
    kty: string
    n: string
    e: string
    use: string
    x5c: []
    x5t: string
}