@oada/certs
Version:
Generate and verify JWT signatures (OAuth dynamic client registration certificates and Trellis document integrity signatures) in the Open Ag Data Alliance (OADA) and Trellis ecosystems
37 lines (32 loc) • 1.23 kB
text/typescript
/**
* @license
* Copyright 2022 Qlever LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { JWK } from 'node-jose';
import { v4 as uuid } from 'uuid';
import type { RSA_JWK } from 'pem-jwk';
export async function create() {
const k = await JWK.createKey('RSA', 2048, {
kid: uuid().replace(/-/g, ''),
}); // Assign a random string ID (I don't like the dashes in uuids)
return {
public: k.toJSON() as RSA_JWK,
private: k.toJSON(true) as RSA_JWK,
};
}
export async function pubFromPriv(...parameters: Parameters<typeof JWK.asKey>) {
const k = await JWK.asKey(...parameters);
return k.toJSON() as RSA_JWK; // If you don't pass true to this function, you get back just the public key
}