4 overrides of IsSymmetricKeyLengthSupported
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityAlgorithmSuite.cs (4)
373
public override bool
IsSymmetricKeyLengthSupported
(int length) { return length == 256; }
404
public override bool
IsSymmetricKeyLengthSupported
(int length) { return length >= 192 && length <= 256; }
435
public override bool
IsSymmetricKeyLengthSupported
(int length) { return length >= 128 && length <= 256; }
467
public override bool
IsSymmetricKeyLengthSupported
(int length) { return length >= 192 && length <= 256; }