4 overrides of DefaultEncryptionKeyDerivationLength
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityAlgorithmSuite.cs (4)
366
public override int
DefaultEncryptionKeyDerivationLength
{ get { return 256; } }
397
public override int
DefaultEncryptionKeyDerivationLength
{ get { return 192; } }
428
public override int
DefaultEncryptionKeyDerivationLength
{ get { return 128; } }
459
public override int
DefaultEncryptionKeyDerivationLength
{ get { return 192; } }
3 references to DefaultEncryptionKeyDerivationLength
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityAlgorithmSuite.cs (3)
265
if (this.
DefaultEncryptionKeyDerivationLength
% 8 != 0)
266
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentException(string.Format(SRServiceModel.Psha1KeyLengthInvalid, this.
DefaultEncryptionKeyDerivationLength
)));
268
return this.
DefaultEncryptionKeyDerivationLength
/ 8;