@sap_oss/wdio-qmate-service
Version:
[](https://api.reuse.software/info/github.com/SAP/wdio-qmate-service)[](http
20 lines (19 loc) • 673 B
TypeScript
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;
}