Home
last modified time | relevance | path

Searched refs:RijndaelManaged (Results 1 – 25 of 52) sorted by relevance

123

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Algorithms/tests/
H A DCryptoConfigTests.cs109 …VerifyStaticCreateResult(Rijndael.Create(typeof(RijndaelManaged).FullName), typeof(RijndaelManaged in StaticCreateMethods()
206 yield return new object[] { "Rijndael", typeof(RijndaelManaged).FullName, true };
207 …eturn new object[] { "System.Security.Cryptography.Rijndael", typeof(RijndaelManaged).FullName, tr…
208 …object[] { "System.Security.Cryptography.SymmetricAlgorithm", typeof(RijndaelManaged).FullName, tr…
224 …new object[] { "http://www.w3.org/2001/04/xmlenc#aes128-cbc", typeof(RijndaelManaged).FullName, tr…
225 … new object[] { "http://www.w3.org/2001/04/xmlenc#kw-aes128", typeof(RijndaelManaged).FullName, tr…
226 …new object[] { "http://www.w3.org/2001/04/xmlenc#aes192-cbc", typeof(RijndaelManaged).FullName, tr…
227 … new object[] { "http://www.w3.org/2001/04/xmlenc#kw-aes192", typeof(RijndaelManaged).FullName, tr…
228 …new object[] { "http://www.w3.org/2001/04/xmlenc#aes256-cbc", typeof(RijndaelManaged).FullName, tr…
229 … new object[] { "http://www.w3.org/2001/04/xmlenc#kw-aes256", typeof(RijndaelManaged).FullName, tr…
H A DRijndaelTests.cs25 Assert.IsNotType<RijndaelManaged>(alg); in VerifyDefaults()
30 using (var alg = new RijndaelManaged()) in VerifyDefaults()
66 using (var alg = new RijndaelManaged()) in VerifyBlocksizeIVNulling()
98 using (var alg = new RijndaelManaged()) in EncryptDecryptKnownECB192()
152 using (var alg = new RijndaelManaged()) in TestShims()
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Test/System.Security.Cryptography/
H A DRijndaelManagedTest.cs22 private RijndaelManaged aes;
27 aes = new RijndaelManaged (); in SetUp()
62 RijndaelManaged r = new RijndaelManaged(); in CBC_0()
91 RijndaelManaged r = new RijndaelManaged(); in CBC_1()
133 RijndaelManaged r = new RijndaelManaged(); in ECB()
346 using (RijndaelManaged aes = new RijndaelManaged ()) { in CFB_7193()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Security/Test/System.Security.Cryptography.Xml/
H A DEncryptedXmlTest.cs47 Rijndael aes = new RijndaelManaged (); in AssertDecryption1()
63 RijndaelManaged aes = new RijndaelManaged (); in Sample2()
97 RijndaelManaged aes = new RijndaelManaged (); in RoundtripSample1()
127 RijndaelManaged aes = new RijndaelManaged (); in RoundtripSample1()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/security/cryptography/
H A Drijndaelmanaged.cs17 public sealed class RijndaelManaged : Rijndael { class
18 public RijndaelManaged () { in RijndaelManaged() method in System.Security.Cryptography.RijndaelManaged
H A Drijndael.cs45 return new System.Security.Cryptography.RijndaelManaged (); in Create()
H A Dsymmetricalgorithm.cs219 return new System.Security.Cryptography.RijndaelManaged (); in Create()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Algorithms/src/System/Security/Cryptography/
H A DRijndaelManaged.cs11 public sealed class RijndaelManaged : Rijndael class
15 public RijndaelManaged() in RijndaelManaged() method in System.Security.Cryptography.RijndaelManaged
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/CommonCrypto/
H A DRijndaelManaged.cs19 public sealed class RijndaelManaged : Rijndael { class
21 public RijndaelManaged () in RijndaelManaged() method in System.Security.Cryptography.RijndaelManaged
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Core/System/Security/Cryptography/
H A DAesManaged.cs19 private RijndaelManaged m_rijndael;
30 m_rijndael = new RijndaelManaged(); in AesManaged()
/dports/security/keepass/KeePass-2.49-Source/KeePassLib/Cryptography/
H A DCryptoUtil.cs189 return (g_obAesCsp.Value ? CreateAesCsp() : new RijndaelManaged()); in CreateAes()
193 return (a ?? new RijndaelManaged()); in CreateAes()
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/
H A Dmonotouch_corlib.dll.sources6 CommonCrypto/RijndaelManaged.cs
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/System.Security.Cryptography/
H A DCryptoConfig.fullaot.cs125 return new RijndaelManaged (); in CreateFromName()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.IdentityModel/System/IdentityModel/
H A DCryptoHelper.cs367 …ils.RequiresFipsCompliance ? (Rijndael)new RijndaelCryptoServiceProvider() : new RijndaelManaged();
688 …ils.RequiresFipsCompliance ? (Rijndael)new RijndaelCryptoServiceProvider() : new RijndaelManaged(); in GetSymmetricAlgorithm()
1034 …ils.RequiresFipsCompliance ? (Rijndael)new RijndaelCryptoServiceProvider() : new RijndaelManaged(); in UnwrapKey()
1073 …ils.RequiresFipsCompliance ? (Rijndael)new RijndaelCryptoServiceProvider() : new RijndaelManaged(); in WrapKey()
1166 return new RijndaelManaged(); in GetDefaultAlgorithm()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/
H A DEncryptedXml.cs516 RijndaelManaged rijn = new RijndaelManaged(); in Encrypt()
591 RijndaelManaged rijn = new RijndaelManaged(); in Encrypt()
/dports/security/keepass-plugin-keepassrpc/keepassrpc-1.8.0/KeePassRPC/
H A DKeePassRPCClient.cs704 using (RijndaelManaged myRijndael = new RijndaelManaged()) in Encrypt()
887 using (RijndaelManaged myRijndael = new RijndaelManaged()) in Decrypt()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/
H A DInMemorySymmetricSecurityKey.cs37 using AES = System.Security.Cryptography.RijndaelManaged;
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel.Channels.Security/
H A DSecureMessageGenerator.cs271 SymmetricAlgorithm masterKey = new RijndaelManaged (); in SecureMessage()
607 RijndaelManaged deriv = new RijndaelManaged (); in CreateDerivedKey()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/Test/System.ServiceModel.Security.Tokens/
H A DIssuedSecurityTokenProviderTest.cs520 Rijndael aes = RijndaelManaged.Create (); in VerifyInput2()
531 Rijndael aes = RijndaelManaged.Create (); in VerifyInput2()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.IdentityModel/Test/System.IdentityModel.Tokens/
H A DInMemorySymmetricSecurityKeyTest.cs39 using AES = System.Security.Cryptography.RijndaelManaged;
/dports/lang/mono/mono-5.10.1.57/mcs/class/Facades/System.Security.Cryptography.Algorithms/
H A DTypeForwarders.cs53 …me.CompilerServices.TypeForwardedToAttribute(typeof(System.Security.Cryptography.RijndaelManaged))]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/net_4_x/Facades/
H A DSystem.Security.Cryptography.Algorithms.cs47 …me.CompilerServices.TypeForwardedToAttribute(typeof(System.Security.Cryptography.RijndaelManaged))]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/Facades/
H A DSystem.Security.Cryptography.Algorithms.cs47 …me.CompilerServices.TypeForwardedToAttribute(typeof(System.Security.Cryptography.RijndaelManaged))]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monodroid/Facades/
H A DSystem.Security.Cryptography.Algorithms.cs47 …me.CompilerServices.TypeForwardedToAttribute(typeof(System.Security.Cryptography.RijndaelManaged))]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Algorithms/ref/
H A DSystem.Security.Cryptography.Algorithms.cs382 public sealed partial class RijndaelManaged : System.Security.Cryptography.Rijndael class
384 public RijndaelManaged() { } in RijndaelManaged() method in System.Security.Cryptography.RijndaelManaged

123