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