4 overrides of DefaultSignatureKeyDerivationLength
System.ServiceModel (4)
System\ServiceModel\Security\SecurityAlgorithmSuite.cs (4)
545public override int DefaultSignatureKeyDerivationLength { get { return 192; } } 576public override int DefaultSignatureKeyDerivationLength { get { return 192; } } 607public override int DefaultSignatureKeyDerivationLength { get { return 128; } } 639public override int DefaultSignatureKeyDerivationLength { get { return 192; } }
6 references to DefaultSignatureKeyDerivationLength
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)
341if (this.DefaultSignatureKeyDerivationLength % 8 != 0) 342throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentException(SR.GetString(SR.Psha1KeyLengthInvalid, this.DefaultSignatureKeyDerivationLength))); 344return this.DefaultSignatureKeyDerivationLength / 8; 396if (dkt.SecurityKeys[0].KeySize < this.DefaultSignatureKeyDerivationLength)