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