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