1
0
mirror of https://github.com/bitwarden/server synced 2026-01-02 00:23:40 +00:00

test(auth-validator): [PM-22975] Client Version Validator - Added stubs and updated test for encryption parsing tests.

This commit is contained in:
Patrick Pimentel
2025-12-08 10:41:35 -05:00
parent 55bfb71bef
commit 36e7b1c65e
2 changed files with 20 additions and 9 deletions

View File

@@ -5,6 +5,15 @@ public static class TestEncryptionConstants
// Intended for use as a V1 encrypted string, accepted by validators
public const string AES256_CBC_HMAC_Encstring = "2.QmFzZTY0UGFydA==|QmFzZTY0UGFydA==|QmFzZTY0UGFydA==";
// Simple stubs for other encstring versions used by parsing tests
public const string AES256_CBC_B64_Encstring = "0.stub";
public const string AES128_CBC_HMACSHA256_B64_Encstring = "1.stub";
public const string AES256_CBC_HMAC_EmptySuffix = "2.";
public const string RSA2048_OAEPSHA256_B64_Encstring = "3.stub";
public const string RSA2048_OAEPSHA1_B64_Encstring = "4.stub";
public const string RSA2048_OAEPSHA256_HMACSHA256_B64_Encstring = "5.stub";
public const string RSA2048_OAEPSHA1_HMACSHA256_B64_Encstring = "6.stub";
// Public key test placeholder
public const string PublicKey = "pk_test";