From 221fc93541fc8bca255c8ba06695fc986c86489a Mon Sep 17 00:00:00 2001 From: Justin Baur <19896123+justindbaur@users.noreply.github.com> Date: Fri, 3 May 2024 07:56:20 -0400 Subject: [PATCH] Update Abstraction Parameter Name to Match Implementation --- libs/common/src/platform/abstractions/crypto.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/common/src/platform/abstractions/crypto.service.ts b/libs/common/src/platform/abstractions/crypto.service.ts index 17d1604090..e8d47a3db6 100644 --- a/libs/common/src/platform/abstractions/crypto.service.ts +++ b/libs/common/src/platform/abstractions/crypto.service.ts @@ -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; + abstract rsaDecrypt(encValue: string, privateKey: Uint8Array): Promise; abstract randomNumber(min: number, max: number): Promise; /** * Generates a new cipher key