Home
last modified time | relevance | path

Searched refs:fOAEP (Results 1 – 25 of 27) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Csp/src/System/Security/Cryptography/
H A DRSACryptoServiceProvider.Unix.cs39 public byte[] Decrypt(byte[] rgb, bool fOAEP) in Decrypt() argument
48 … return _impl.Decrypt(rgb, fOAEP ? RSAEncryptionPadding.OaepSHA1 : RSAEncryptionPadding.Pkcs1); in Decrypt()
59 padding == RSAEncryptionPadding.Pkcs1 ? Decrypt(data, fOAEP: false) : in Decrypt()
60 …padding == RSAEncryptionPadding.OaepSHA1 ? Decrypt(data, fOAEP: true) : // For compat, this preven… in Decrypt()
85 public byte[] Encrypt(byte[] rgb, bool fOAEP) in Encrypt() argument
90 … return _impl.Encrypt(rgb, fOAEP ? RSAEncryptionPadding.OaepSHA1 : RSAEncryptionPadding.Pkcs1); in Encrypt()
101 padding == RSAEncryptionPadding.Pkcs1 ? Encrypt(data, fOAEP: false) : in Encrypt()
102 …padding == RSAEncryptionPadding.OaepSHA1 ? Encrypt(data, fOAEP: true) : // For compat, this preve… in Encrypt()
H A DRSACryptoServiceProvider.Windows.cs258 public byte[] Decrypt(byte[] rgb, bool fOAEP) in Decrypt() argument
275 CapiHelper.DecryptKey(SafeKeyHandle, rgb, rgb.Length, fOAEP, out decryptedKey); in Decrypt()
312 public byte[] Encrypt(byte[] rgb, bool fOAEP) in Encrypt() argument
320 CapiHelper.EncryptKey(SafeKeyHandle, rgb, rgb.Length, fOAEP, ref encryptedKey); in Encrypt()
616 return Encrypt(data, fOAEP: false); in Encrypt()
620 return Encrypt(data, fOAEP: true); in Encrypt()
637 return Decrypt(data, fOAEP: false); in Decrypt()
641 return Decrypt(data, fOAEP: true); in Decrypt()
H A DCapiHelper.Windows.cs825 …Handle safeKeyHandle, byte[] encryptedData, int encryptedDataLength, bool fOAEP, out byte[] decryp… in DecryptKey() argument
835 int dwFlags = fOAEP ? (int)CryptDecryptFlags.CRYPT_OAEP : 0; in DecryptKey()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/security/cryptography/
H A Drsacryptoserviceprovider.cs67 [MarshalAs(UnmanagedType.Bool)] bool fOAEP, in DecryptKey() argument
77 [MarshalAs(UnmanagedType.Bool)] bool fOAEP, in EncryptKey() argument
402 public byte[] Encrypt(byte[] rgb, bool fOAEP) { in Encrypt() argument
410 …EncryptKey(_safeKeyHandle, rgb, rgb.Length, fOAEP, JitHelpers.GetObjectHandleOnStack(ref encrypted… in Encrypt()
421 public byte [] Decrypt(byte[] rgb, bool fOAEP) { in Decrypt() argument
442 …DecryptKey(_safeKeyHandle, rgb, rgb.Length, fOAEP, JitHelpers.GetObjectHandleOnStack(ref decrypted… in Decrypt()
593 return Encrypt(data, fOAEP: false); in Encrypt()
595 return Encrypt(data, fOAEP: true); in Encrypt()
610 return Decrypt(data, fOAEP: false); in Decrypt()
612 return Decrypt(data, fOAEP: true); in Decrypt()
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/System.Security.Cryptography/
H A DRSACryptoServiceProvider.cs158 public byte[] Decrypt (byte[] rgb, bool fOAEP) in Decrypt() argument
171 if (fOAEP) in Decrypt()
192 public byte[] Encrypt (byte[] rgb, bool fOAEP) in Encrypt() argument
196 if (fOAEP) in Encrypt()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/
H A DEncryptedXml.cs385 bool fOAEP = false; in DecryptEncryptedKey()
402fOAEP = (encryptedKey.EncryptionMethod != null && encryptedKey.EncryptionMethod.KeyAlgorithm == En… in DecryptEncryptedKey()
403 … return EncryptedXml.DecryptKey(encryptedKey.CipherData.CipherValue, (RSA)kek, fOAEP); in DecryptEncryptedKey()
417fOAEP = (encryptedKey.EncryptionMethod != null && encryptedKey.EncryptionMethod.KeyAlgorithm == En… in DecryptEncryptedKey()
418 … return EncryptedXml.DecryptKey(encryptedKey.CipherData.CipherValue, privateKey, fOAEP); in DecryptEncryptedKey()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/SqlClient/
H A DSqlColumnEncryptionCspProvider.cs306 return rscp.Encrypt(columnEncryptionKey, fOAEP: true); in RSAEncrypt()
321 return rscp.Decrypt(encryptedColumnEncryptionKey, fOAEP: true); in RSADecrypt()
H A DSqlColumnEncryptionCertificateStoreProvider.cs455 return rscp.Encrypt(plainText, fOAEP: true); in RSAEncrypt()
471 return rscp.Decrypt(cipherText, fOAEP: true); in RSADecrypt()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.IdentityModel.Selectors/infocard/client/System/IdentityModel/Selectors/
H A DCardSpaceShim.cs337 bool fOAEP, in CsV2Encrypt() argument
348 bool fOAEP, in CsV2Decrypt() argument
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Csp/ref/
H A DSystem.Security.Cryptography.Csp.cs194 public byte[] Decrypt(byte[] rgb, bool fOAEP) { throw null; } in Decrypt() argument
198 public byte[] Encrypt(byte[] rgb, bool fOAEP) { throw null; } in Encrypt() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.0/
H A DSystem.Security.cs585 …byte[] DecryptKey(byte[] keyData, System.Security.Cryptography.RSA rsa, bool fOAEP) { throw null; } in DecryptKey() argument
593 …byte[] EncryptKey(byte[] keyData, System.Security.Cryptography.RSA rsa, bool fOAEP) { throw null; } in EncryptKey() argument
H A Dmscorlib.cs19076 public byte[] Decrypt(byte[] rgb, bool fOAEP) { throw null; } in Decrypt() argument
19079 public byte[] Encrypt(byte[] rgb, bool fOAEP) { throw null; } in Encrypt() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v2.0/
H A DSystem.Security.cs586 …byte[] DecryptKey(byte[] keyData, System.Security.Cryptography.RSA rsa, bool fOAEP) { throw null; } in DecryptKey() argument
594 …byte[] EncryptKey(byte[] keyData, System.Security.Cryptography.RSA rsa, bool fOAEP) { throw null; } in EncryptKey() argument
H A Dmscorlib.cs17663 public byte[] Decrypt(byte[] rgb, bool fOAEP) { throw null; } in Decrypt() argument
17666 public byte[] Encrypt(byte[] rgb, bool fOAEP) { throw null; } in Encrypt() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6.1/
H A Dmscorlib.cs21023 public byte[] Decrypt(byte[] rgb, bool fOAEP) { throw null; }
21027 public byte[] Encrypt(byte[] rgb, bool fOAEP) { throw null; }
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6/
H A Dmscorlib.cs21023 public byte[] Decrypt(byte[] rgb, bool fOAEP) { throw null; }
21027 public byte[] Encrypt(byte[] rgb, bool fOAEP) { throw null; }
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5.1/
H A Dmscorlib.cs20759 public byte[] Decrypt(byte[] rgb, bool fOAEP) { throw null; }
20762 public byte[] Encrypt(byte[] rgb, bool fOAEP) { throw null; }
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monotouch/
H A Dmscorlib.cs19971 public byte[] Decrypt(byte[] rgb, bool fOAEP) { throw null; }
19975 public byte[] Encrypt(byte[] rgb, bool fOAEP) { throw null; }
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/
H A Dmscorlib.cs20112 public byte[] Decrypt(byte[] rgb, bool fOAEP) { throw null; }
20116 public byte[] Encrypt(byte[] rgb, bool fOAEP) { throw null; }
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5.2/
H A Dmscorlib.cs20761 public byte[] Decrypt(byte[] rgb, bool fOAEP) { throw null; }
20764 public byte[] Encrypt(byte[] rgb, bool fOAEP) { throw null; }
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5/
H A Dmscorlib.cs20729 public byte[] Decrypt(byte[] rgb, bool fOAEP) { throw null; }
20732 public byte[] Encrypt(byte[] rgb, bool fOAEP) { throw null; }
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6.2/
H A Dmscorlib.cs21041 public byte[] Decrypt(byte[] rgb, bool fOAEP) { throw null; }
21045 public byte[] Encrypt(byte[] rgb, bool fOAEP) { throw null; }
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/net_4_x/
H A Dmscorlib.cs21496 public byte[] Decrypt(byte[] rgb, bool fOAEP) { throw null; }
21500 public byte[] Encrypt(byte[] rgb, bool fOAEP) { throw null; }
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monodroid/
H A Dmscorlib.cs21248 public byte[] Decrypt(byte[] rgb, bool fOAEP) { throw null; }
21252 public byte[] Encrypt(byte[] rgb, bool fOAEP) { throw null; }
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monodroid/
H A Dmscorlib.cs21389 public byte[] Decrypt(byte[] rgb, bool fOAEP) { throw null; }
21393 public byte[] Encrypt(byte[] rgb, bool fOAEP) { throw null; }

12