feat(tenpayv3): 支持多种 RSA 填充方式及算法

This commit is contained in:
Fu Diwei
2022-02-24 14:46:59 +08:00
parent 9a8a00f05a
commit ffcc010caf
29 changed files with 118 additions and 82 deletions

View File

@@ -4,6 +4,8 @@
{
public const string AEAD_AES_256_GCM = "AEAD_AES_256_GCM";
public const string RSA_2048_PKCS8_ECB = "RSA_2048_PKCS8_ECB";
public const string RSA_2048_ECB_PKCS8_OAEP_WITH_SHA1_AND_MGF1 = "RSA_2048_ECB_PKCS8_OAEPWithSHA-1AndMGF1";
public const string RSA_2048_ECB_PKCS1 = "RSA_2048_ECB_PKCS1";
}
}