summaryrefslogtreecommitdiff
path: root/vendor/github.com/spiffe/go-spiffe/v2/spiffeid/charset_backcompat_allow.go
blob: 9bd225dfb625956de9ce593e5e2ec1ad7cd12ad0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//go:build spiffeid_charset_backcompat
// +build spiffeid_charset_backcompat

package spiffeid

func isBackcompatTrustDomainChar(c uint8) bool {
	if isSubDelim(c) {
		return true
	}
	switch c {
	// unreserved
	case '~':
		return true
	default:
		return false
	}
}

func isBackcompatPathChar(c uint8) bool {
	if isSubDelim(c) {
		return true
	}
	switch c {
	// unreserved
	case '~':
		return true
	// gen-delims
	case ':', '[', ']', '@':
		return true
	default:
		return false
	}
}

func isSubDelim(c uint8) bool {
	switch c {
	case '!', '$', '&', '\'', '(', ')', '*', '+', ',', ';', '=':
		return true
	default:
		return false
	}
}