Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

store, display, and verify certificate technical constraints #334

Open
adamdecaf opened this issue Apr 11, 2018 · 0 comments
Open

store, display, and verify certificate technical constraints #334

adamdecaf opened this issue Apr 11, 2018 · 0 comments

Comments

@adamdecaf
Copy link
Contributor

Go 1.10 added support for more cert "technical constraints". We used to rely on a fork (see #183) for some of these, but that's been removed (see #333) now that the project is on Go 1.10 fully.

We should support storing, displaying, and verifying all these constraints on certificates. The verifying is likely all done by Go already.

        // Name constraints
        PermittedDNSDomainsCritical bool // if true then the name constraints are marked critical.
        PermittedDNSDomains         []string
        ExcludedDNSDomains          []string
        PermittedIPRanges           []*net.IPNet
        ExcludedIPRanges            []*net.IPNet
        PermittedEmailAddresses     []string
        ExcludedEmailAddresses      []string
        PermittedURIDomains         []string
        ExcludedURIDomains          []string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant