UNPKG

@sap_oss/wdio-qmate-service

Version:

[![REUSE status](https://api.reuse.software/badge/github.com/SAP/wdio-qmate-service)](https://api.reuse.software/info/github.com/SAP/wdio-qmate-service)[![Node.js CI](https://github.com/SAP/wdio-qmate-service/actions/workflows/node.js.yml/badge.svg)](http

20 lines (19 loc) 673 B
import { KeyGenerationOptions } from "../types/common"; export default abstract class KeyGenerator { /** * @description Generates a key pair and prints it to the console. * @param options Key generation options. */ static generateKeyPair(options: KeyGenerationOptions): void; /** * @description Prints the input options to the console. * @param options Key generation options. */ private static _printInput; /** * @description Prints the generated key pair to the console. * @param publicKey The generated public key. * @param privateKey The generated private key. */ private static _printOutput; }