Update Abstraction Parameter Name to Match Implementation

This commit is contained in:
Justin Baur 2024-05-03 07:56:20 -04:00
parent d54497e3c1
commit 221fc93541
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ export abstract class CryptoService {
* @param privateKeyValue The private key to use for decryption
* @returns The decrypted value
*/
abstract rsaDecrypt(encValue: string, privateKeyValue: Uint8Array): Promise<Uint8Array>;
abstract rsaDecrypt(encValue: string, privateKey: Uint8Array): Promise<Uint8Array>;
abstract randomNumber(min: number, max: number): Promise<number>;
/**
* Generates a new cipher key