mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Forgot to add the check for Mono
This commit is contained in:
parent
10e62b5ee1
commit
4c950ab231
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ namespace LibHac
|
|||
public static Validity Rsa2048PssVerify(byte[] data, byte[] signature, byte[] modulus)
|
||||
{
|
||||
#if NETFRAMEWORK
|
||||
if (true)
|
||||
if (Compat.IsMono)
|
||||
{
|
||||
return Compat.Rsa2048PssVerifyMono(data, signature, modulus)
|
||||
? Validity.Valid
|
||||
|
|
Loading…
Reference in a new issue