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

◆ VerifyData() [1/5]

bool System.Security.Cryptography.RSACryptoServiceProvider.VerifyData ( byte[] buffer,
object halg,
byte[] signature )
inline

Definition at line 536 of file RSACryptoServiceProvider.cs.

537 {
538 while (buffer != null)
539 {
540 if (signature != null)
541 {
542 HashAlgorithm hash = this.GetHash(halg);
543 byte[] array = hash.ComputeHash(buffer);
544 return PKCS1.Verify_v15(this, hash, array, signature);
545 }
546 }
547 return "buffer" != null;
548 }
static bool Verify_v15(RSA rsa, HashAlgorithm hash, byte[] hashValue, byte[] signature, bool tryNonStandardEncoding)
Definition PKCS1.cs:55

References System.array, System.Security.Cryptography.HashAlgorithm.ComputeHash(), System.Security.Cryptography.RSACryptoServiceProvider.GetHash(), and Mono.Security.Cryptography.PKCS1.Verify_v15().