4 overrides of DefaultSignatureKeyDerivationLength
System.ServiceModel (4)
System\ServiceModel\Security\SecurityAlgorithmSuite.cs (4)
545
public override int
DefaultSignatureKeyDerivationLength
{ get { return 192; } }
576
public override int
DefaultSignatureKeyDerivationLength
{ get { return 192; } }
607
public override int
DefaultSignatureKeyDerivationLength
{ get { return 128; } }
639
public override int
DefaultSignatureKeyDerivationLength
{ get { return 192; } }
6 references to DefaultSignatureKeyDerivationLength
System.ServiceModel (6)
System\ServiceModel\Security\ReceiveSecurityHeader.cs (2)
860
int maxKeyDerivationLengthInBits = this.AlgorithmSuite.DefaultEncryptionKeyDerivationLength >= this.AlgorithmSuite.
DefaultSignatureKeyDerivationLength
?
861
this.AlgorithmSuite.DefaultEncryptionKeyDerivationLength : this.AlgorithmSuite.
DefaultSignatureKeyDerivationLength
;
System\ServiceModel\Security\SecurityAlgorithmSuite.cs (4)
341
if (this.
DefaultSignatureKeyDerivationLength
% 8 != 0)
342
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentException(SR.GetString(SR.Psha1KeyLengthInvalid, this.
DefaultSignatureKeyDerivationLength
)));
344
return this.
DefaultSignatureKeyDerivationLength
/ 8;
396
if (dkt.SecurityKeys[0].KeySize < this.
DefaultSignatureKeyDerivationLength
)