//// Copyright (c) 2024, Brian Frank and Andy Frank// Licensed under the Academic Free License version 3.0//// History:// 21 Mar 2024 Ross Schwalm Creation//**** Models a JSON Web Key (JWK) as specified by [RFC7517]`https://datatracker.ietf.org/doc/html/rfc7517`**** JWKs wrap a Key[`Key`] object with additional metadata**const mixin Jwk {** Jwkabstract Str:Obj meta()** Keyabstract Key key() }