terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ VerifyHash() [3/4]

bool System.Security.Cryptography.RSACryptoServiceProvider.VerifyHash ( byte[] rgbHash,
string str,
byte[] rgbSignature )
inline

Definition at line 551 of file RSACryptoServiceProvider.cs.

552 {
553 while (rgbHash != null)
554 {
555 if (rgbSignature != null)
556 {
557 if (str != null)
558 {
559 }
560 HashAlgorithm hashAlgorithm = HashAlgorithm.Create("SHA1");
561 return PKCS1.Verify_v15(this, hashAlgorithm, rgbHash, rgbSignature);
562 }
563 }
564 return "rgbHash" != null;
565 }
class f__AnonymousType0<< Count > j__TPar
static bool Verify_v15(RSA rsa, HashAlgorithm hash, byte[] hashValue, byte[] signature, bool tryNonStandardEncoding)
Definition PKCS1.cs:55

References System.Security.Cryptography.HashAlgorithm.Create(), j__TPar, and Mono.Security.Cryptography.PKCS1.Verify_v15().