-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Closed
dotnet/corefx
#36775Labels
api-approvedAPI was approved in API review, it can be implementedAPI was approved in API review, it can be implementedarea-System.Net.Security
Milestone
Description
Forking off the main thread: https://github.com/dotnet/corefx/issues/24588 to stick to APIs
namespace System.Net.Security
{
public sealed class CipherSuitesPolicy
{
public CipherSuitesPolicy(IEnumerable<TlsCipherSuite> allowedCipherSuites);
public IEnumerable<TlsCipherSuite> AllowedCipherSuites { get; }
}
public class SslServerAuthenticationOptions
{
public CipherSuitesPolicy CipherSuitesPolicy { get; set; }
}
public class SslClientAuthenticationOptions
{
public CipherSuitesPolicy CipherSuitesPolicy { get; set; }
}
}Depends on: https://github.com/dotnet/corefx/issues/34867 (approved)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
api-approvedAPI was approved in API review, it can be implementedAPI was approved in API review, it can be implementedarea-System.Net.Security