4 overrides of DefaultEncryptionKeyDerivationLength
System.ServiceModel (4)
System\ServiceModel\Security\SecurityAlgorithmSuite.cs (4)
540public override int DefaultEncryptionKeyDerivationLength { get { return 256; } } 571public override int DefaultEncryptionKeyDerivationLength { get { return 192; } } 602public override int DefaultEncryptionKeyDerivationLength { get { return 128; } } 633public override int DefaultEncryptionKeyDerivationLength { get { return 192; } }
6 references to DefaultEncryptionKeyDerivationLength
System.ServiceModel (6)
System\ServiceModel\Security\ReceiveSecurityHeader.cs (2)
860int maxKeyDerivationLengthInBits = this.AlgorithmSuite.DefaultEncryptionKeyDerivationLength >= this.AlgorithmSuite.DefaultSignatureKeyDerivationLength ? 861this.AlgorithmSuite.DefaultEncryptionKeyDerivationLength : this.AlgorithmSuite.DefaultSignatureKeyDerivationLength;
System\ServiceModel\Security\SecurityAlgorithmSuite.cs (4)
266if (this.DefaultEncryptionKeyDerivationLength % 8 != 0) 267throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentException(SR.GetString(SR.Psha1KeyLengthInvalid, this.DefaultEncryptionKeyDerivationLength))); 269return this.DefaultEncryptionKeyDerivationLength / 8; 429if (dkt.SecurityKeys[0].KeySize < this.DefaultEncryptionKeyDerivationLength)