repo
stringlengths
6
47
file_url
stringlengths
77
269
file_path
stringlengths
5
186
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-07 08:35:43
2026-01-07 08:55:24
truncated
bool
2 classes
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/ceremony/ocsp.go
third-party/github.com/letsencrypt/boulder/cmd/ceremony/ocsp.go
package main import ( "crypto" "crypto/x509" "encoding/base64" "errors" "fmt" "time" "golang.org/x/crypto/ocsp" ) func generateOCSPResponse(signer crypto.Signer, issuer, delegatedIssuer, cert *x509.Certificate, thisUpdate, nextUpdate time.Time, status int) ([]byte, error) { err := cert.CheckSignatureFrom(iss...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/ceremony/file.go
third-party/github.com/letsencrypt/boulder/cmd/ceremony/file.go
package main import "os" // writeFile creates a file at the given filename and writes the provided bytes // to it. Errors if the file already exists. func writeFile(filename string, bytes []byte) error { f, err := os.OpenFile(filename, os.O_CREATE|os.O_EXCL|os.O_WRONLY, 0644) if err != nil { return err } _, err...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/ceremony/cert_test.go
third-party/github.com/letsencrypt/boulder/cmd/ceremony/cert_test.go
package main import ( "bytes" "crypto/ecdsa" "crypto/elliptic" "crypto/rand" "crypto/x509" "crypto/x509/pkix" "encoding/asn1" "encoding/hex" "errors" "fmt" "io/fs" "math/big" "testing" "time" "github.com/miekg/pkcs11" "github.com/letsencrypt/boulder/pkcs11helpers" "github.com/letsencrypt/boulder/tes...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/ceremony/ecdsa_test.go
third-party/github.com/letsencrypt/boulder/cmd/ceremony/ecdsa_test.go
package main import ( "crypto/ecdsa" "crypto/elliptic" "crypto/rand" "errors" "testing" "github.com/letsencrypt/boulder/pkcs11helpers" "github.com/letsencrypt/boulder/test" "github.com/miekg/pkcs11" ) func TestECPub(t *testing.T) { s, ctx := pkcs11helpers.NewSessionWithMock() // test we fail when pkcs11he...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/ceremony/file_test.go
third-party/github.com/letsencrypt/boulder/cmd/ceremony/file_test.go
package main import ( "testing" ) func TestWriteFileSuccess(t *testing.T) { dir := t.TempDir() err := writeFile(dir+"/example", []byte("hi")) if err != nil { t.Fatal(err) } } func TestWriteFileFail(t *testing.T) { dir := t.TempDir() err := writeFile(dir+"/example", []byte("hi")) if err != nil { t.Fatal(e...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/ceremony/crl.go
third-party/github.com/letsencrypt/boulder/cmd/ceremony/crl.go
package main import ( "crypto" "crypto/x509" "encoding/pem" "errors" "fmt" "math/big" "time" "github.com/letsencrypt/boulder/crl/idp" "github.com/letsencrypt/boulder/linter" ) func generateCRL(signer crypto.Signer, issuer *x509.Certificate, thisUpdate, nextUpdate time.Time, number int64, revokedCertificates...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/ceremony/rsa_test.go
third-party/github.com/letsencrypt/boulder/cmd/ceremony/rsa_test.go
package main import ( "crypto" "crypto/rand" "crypto/rsa" "errors" "math/big" "testing" "github.com/miekg/pkcs11" "github.com/letsencrypt/boulder/pkcs11helpers" "github.com/letsencrypt/boulder/test" ) func TestRSAPub(t *testing.T) { s, ctx := pkcs11helpers.NewSessionWithMock() // test we fail to constru...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/ceremony/main_test.go
third-party/github.com/letsencrypt/boulder/cmd/ceremony/main_test.go
package main import ( "crypto/ecdsa" "crypto/elliptic" "crypto/rand" "crypto/x509" "encoding/pem" "fmt" "io/fs" "math/big" "os" "path" "strings" "testing" "time" "github.com/jmhodges/clock" "github.com/letsencrypt/boulder/test" ) func TestLoadPubKey(t *testing.T) { tmp := t.TempDir() key, _ := ecds...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
true
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/ceremony/ecdsa.go
third-party/github.com/letsencrypt/boulder/cmd/ceremony/ecdsa.go
package main import ( "crypto/ecdsa" "crypto/elliptic" "errors" "fmt" "log" "github.com/letsencrypt/boulder/pkcs11helpers" "github.com/miekg/pkcs11" ) var stringToCurve = map[string]elliptic.Curve{ elliptic.P224().Params().Name: elliptic.P224(), elliptic.P256().Params().Name: elliptic.P256(), elliptic.P384...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/ceremony/ocsp_test.go
third-party/github.com/letsencrypt/boulder/cmd/ceremony/ocsp_test.go
package main import ( "crypto/ecdsa" "crypto/elliptic" "crypto/rand" "crypto/x509" "crypto/x509/pkix" "math/big" "testing" "time" "github.com/letsencrypt/boulder/test" ) func TestGenerateOCSPResponse(t *testing.T) { kA, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader) test.AssertNotError(t, err, "fa...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/ceremony/crl_test.go
third-party/github.com/letsencrypt/boulder/cmd/ceremony/crl_test.go
package main import ( "crypto" "crypto/ecdsa" "crypto/elliptic" "crypto/rand" "crypto/x509" "crypto/x509/pkix" "encoding/asn1" "encoding/pem" "io" "math/big" "testing" "time" "github.com/letsencrypt/boulder/test" ) func TestGenerateCRLTimeBounds(t *testing.T) { _, err := generateCRL(nil, nil, time.Now(...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/ceremony/rsa.go
third-party/github.com/letsencrypt/boulder/cmd/ceremony/rsa.go
package main import ( "crypto/rsa" "errors" "log" "math/big" "github.com/miekg/pkcs11" "github.com/letsencrypt/boulder/pkcs11helpers" ) const ( rsaExp = 65537 ) // rsaArgs constructs the private and public key template attributes sent to the // device and specifies which mechanism should be used. modulusLen...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/ceremony/cert.go
third-party/github.com/letsencrypt/boulder/cmd/ceremony/cert.go
package main import ( "crypto" "crypto/sha256" "crypto/x509" "crypto/x509/pkix" "encoding/asn1" "errors" "fmt" "io" "math/big" "strconv" "strings" "time" ) type policyInfoConfig struct { OID string } // certProfile contains the information required to generate a certificate type certProfile struct { //...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/ceremony/key.go
third-party/github.com/letsencrypt/boulder/cmd/ceremony/key.go
package main import ( "crypto" "crypto/x509" "encoding/pem" "fmt" "log" "github.com/letsencrypt/boulder/pkcs11helpers" "github.com/miekg/pkcs11" ) type hsmRandReader struct { *pkcs11helpers.Session } func newRandReader(session *pkcs11helpers.Session) *hsmRandReader { return &hsmRandReader{session} } func ...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/ceremony/main.go
third-party/github.com/letsencrypt/boulder/cmd/ceremony/main.go
package main import ( "bytes" "context" "crypto" "crypto/ecdsa" "crypto/rsa" "crypto/x509" "crypto/x509/pkix" "encoding/asn1" "encoding/pem" "errors" "flag" "fmt" "log" "os" "slices" "time" "golang.org/x/crypto/ocsp" "gopkg.in/yaml.v3" zlintx509 "github.com/zmap/zcrypto/x509" "github.com/zmap/zli...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
true
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/crl-storer/main.go
third-party/github.com/letsencrypt/boulder/cmd/crl-storer/main.go
package notmain import ( "context" "flag" "net/http" "os" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/config" "github.com/aws/aws-sdk-go-v2/service/s3" awsl "github.com/aws/smithy-go/logging" "github.com/letsencrypt/boulder/cmd" "github.com/letsencrypt/boulder/crl/storer" cspb "github...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/boulder-wfe2/main_test.go
third-party/github.com/letsencrypt/boulder/cmd/boulder-wfe2/main_test.go
package notmain import ( "crypto/x509" "encoding/pem" "testing" "github.com/letsencrypt/boulder/test" ) func TestLoadChain(t *testing.T) { // Most of loadChain's logic is implemented in issuance.LoadChain, so this // test only covers the construction of the PEM bytes. _, chainPEM, err := loadChain([]string{ ...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/boulder-wfe2/main.go
third-party/github.com/letsencrypt/boulder/cmd/boulder-wfe2/main.go
package notmain import ( "bytes" "context" "encoding/pem" "flag" "fmt" "net/http" "os" "time" "github.com/letsencrypt/boulder/cmd" "github.com/letsencrypt/boulder/config" emailpb "github.com/letsencrypt/boulder/email/proto" "github.com/letsencrypt/boulder/features" "github.com/letsencrypt/boulder/goodkey...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/remoteva/main.go
third-party/github.com/letsencrypt/boulder/cmd/remoteva/main.go
package notmain import ( "context" "crypto/tls" "flag" "os" "time" "github.com/letsencrypt/boulder/bdns" "github.com/letsencrypt/boulder/cmd" "github.com/letsencrypt/boulder/features" bgrpc "github.com/letsencrypt/boulder/grpc" "github.com/letsencrypt/boulder/iana" "github.com/letsencrypt/boulder/va" vaCo...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/cert-checker/main_test.go
third-party/github.com/letsencrypt/boulder/cmd/cert-checker/main_test.go
package notmain import ( "context" "crypto" "crypto/ecdsa" "crypto/elliptic" "crypto/rand" "crypto/rsa" "crypto/x509" "crypto/x509/pkix" "database/sql" "encoding/asn1" "encoding/pem" "errors" "log" "math/big" mrand "math/rand/v2" "os" "slices" "strings" "sync" "testing" "time" "github.com/jmhodg...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/cert-checker/main.go
third-party/github.com/letsencrypt/boulder/cmd/cert-checker/main.go
package notmain import ( "bytes" "context" "crypto/x509" "database/sql" "encoding/json" "flag" "fmt" "net/netip" "os" "regexp" "slices" "sync" "sync/atomic" "time" "github.com/jmhodges/clock" "github.com/prometheus/client_golang/prometheus" zX509 "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/akamai-purger/main_test.go
third-party/github.com/letsencrypt/boulder/cmd/akamai-purger/main_test.go
package notmain import ( "context" "errors" "fmt" "testing" "time" akamaipb "github.com/letsencrypt/boulder/akamai/proto" "github.com/letsencrypt/boulder/config" blog "github.com/letsencrypt/boulder/log" "github.com/letsencrypt/boulder/test" ) func TestThroughput_optimizeAndValidate(t *testing.T) { dur := ...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/akamai-purger/main.go
third-party/github.com/letsencrypt/boulder/cmd/akamai-purger/main.go
package notmain import ( "context" "errors" "flag" "fmt" "math" "os" "slices" "strings" "sync" "time" "github.com/prometheus/client_golang/prometheus" "google.golang.org/protobuf/types/known/emptypb" "github.com/letsencrypt/boulder/akamai" akamaipb "github.com/letsencrypt/boulder/akamai/proto" "github...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/log-validator/main.go
third-party/github.com/letsencrypt/boulder/cmd/log-validator/main.go
package notmain import ( "context" "flag" "github.com/letsencrypt/boulder/cmd" "github.com/letsencrypt/boulder/log/validator" ) type Config struct { Files []string `validate:"min=1,dive,required"` DebugAddr string `validate:"omitempty,hostname_port"` Syslog cmd.SyslogConfig OpenTelemetry...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/ocsp-responder/main_test.go
third-party/github.com/letsencrypt/boulder/cmd/ocsp-responder/main_test.go
package notmain import ( "bytes" "encoding/base64" "net/http" "net/http/httptest" "os" "testing" "time" "go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp" "golang.org/x/crypto/ocsp" blog "github.com/letsencrypt/boulder/log" "github.com/letsencrypt/boulder/metrics" "github.com/letsencrypt/bou...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/ocsp-responder/main.go
third-party/github.com/letsencrypt/boulder/cmd/ocsp-responder/main.go
package notmain import ( "context" "flag" "fmt" "net/http" "net/url" "os" "strings" "time" "github.com/prometheus/client_golang/prometheus" "go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp" "github.com/letsencrypt/boulder/cmd" "github.com/letsencrypt/boulder/config" "github.com/letsencrypt...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/boulder-ca/main.go
third-party/github.com/letsencrypt/boulder/cmd/boulder-ca/main.go
package notmain import ( "context" "flag" "fmt" "os" "strconv" "time" "github.com/letsencrypt/boulder/ca" capb "github.com/letsencrypt/boulder/ca/proto" "github.com/letsencrypt/boulder/cmd" "github.com/letsencrypt/boulder/config" "github.com/letsencrypt/boulder/ctpolicy/loglist" "github.com/letsencrypt/bo...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/reversed-hostname-checker/main.go
third-party/github.com/letsencrypt/boulder/cmd/reversed-hostname-checker/main.go
// Read a list of reversed FQDNs and/or normal IP addresses, separated by // newlines. Print only those that are rejected by the current policy. package notmain import ( "bufio" "flag" "fmt" "io" "log" "net/netip" "os" "github.com/letsencrypt/boulder/cmd" "github.com/letsencrypt/boulder/identifier" "github...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/cmd/crl-checker/main.go
third-party/github.com/letsencrypt/boulder/cmd/crl-checker/main.go
package notmain import ( "crypto/x509" "encoding/json" "flag" "fmt" "io" "net/http" "net/url" "os" "strings" "time" "github.com/letsencrypt/boulder/cmd" "github.com/letsencrypt/boulder/core" "github.com/letsencrypt/boulder/crl/checker" ) func downloadShard(url string) (*x509.RevocationList, error) { re...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/strictyaml/yaml_test.go
third-party/github.com/letsencrypt/boulder/strictyaml/yaml_test.go
package strictyaml import ( "io" "testing" "github.com/letsencrypt/boulder/test" ) var ( emptyConfig = []byte(``) validConfig = []byte(` a: c d: c `) invalidConfig1 = []byte(` x: y `) invalidConfig2 = []byte(` a: c d: c x: - hey `) ) func TestStrictYAMLUnmarshal(t *testing.T) { var config struct { A st...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/strictyaml/yaml.go
third-party/github.com/letsencrypt/boulder/strictyaml/yaml.go
// Package strictyaml provides a strict YAML unmarshaller based on `go-yaml/yaml` package strictyaml import ( "bytes" "errors" "fmt" "io" "gopkg.in/yaml.v3" ) // Unmarshal takes a byte array and an interface passed by reference. The // d.Decode will read the next YAML-encoded value from its input and store it i...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/ratelimits/limit_test.go
third-party/github.com/letsencrypt/boulder/ratelimits/limit_test.go
package ratelimits import ( "net/netip" "os" "testing" "time" "github.com/letsencrypt/boulder/config" "github.com/letsencrypt/boulder/identifier" "github.com/letsencrypt/boulder/test" ) // loadAndParseDefaultLimits is a helper that calls both loadDefaults and // parseDefaultLimits to handle a YAML file. // //...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/ratelimits/source_test.go
third-party/github.com/letsencrypt/boulder/ratelimits/source_test.go
package ratelimits import ( "testing" "github.com/jmhodges/clock" ) func newInmemTestLimiter(t *testing.T, clk clock.FakeClock) *Limiter { return newTestLimiter(t, NewInmemSource(), clk) }
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/ratelimits/transaction.go
third-party/github.com/letsencrypt/boulder/ratelimits/transaction.go
package ratelimits import ( "errors" "fmt" "net/netip" "strconv" "github.com/letsencrypt/boulder/core" "github.com/letsencrypt/boulder/identifier" ) // ErrInvalidCost indicates that the cost specified was < 0. var ErrInvalidCost = fmt.Errorf("invalid cost, must be >= 0") // ErrInvalidCostOverLimit indicates t...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/ratelimits/names_test.go
third-party/github.com/letsencrypt/boulder/ratelimits/names_test.go
package ratelimits import ( "fmt" "testing" "github.com/letsencrypt/boulder/test" ) func TestNameIsValid(t *testing.T) { t.Parallel() type args struct { name Name } tests := []struct { name string args args want bool }{ {name: "Unknown", args: args{name: Unknown}, want: false}, {name: "9001", arg...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/ratelimits/gcra.go
third-party/github.com/letsencrypt/boulder/ratelimits/gcra.go
package ratelimits import ( "time" "github.com/jmhodges/clock" ) // maybeSpend uses the GCRA algorithm to decide whether to allow a request. It // returns a Decision struct with the result of the decision and the updated // TAT. The cost must be 0 or greater and <= the burst capacity of the limit. func maybeSpend(...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/ratelimits/gcra_test.go
third-party/github.com/letsencrypt/boulder/ratelimits/gcra_test.go
package ratelimits import ( "testing" "time" "github.com/jmhodges/clock" "github.com/letsencrypt/boulder/config" "github.com/letsencrypt/boulder/test" ) func TestDecide(t *testing.T) { clk := clock.NewFake() limit := &limit{burst: 10, count: 1, period: config.Duration{Duration: time.Second}} limit.precomput...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/ratelimits/names.go
third-party/github.com/letsencrypt/boulder/ratelimits/names.go
package ratelimits import ( "fmt" "net/netip" "strconv" "strings" "github.com/letsencrypt/boulder/iana" "github.com/letsencrypt/boulder/policy" ) // Name is an enumeration of all rate limit names. It is used to intern rate // limit names as strings and to provide a type-safe way to refer to rate // limits. // ...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/ratelimits/source.go
third-party/github.com/letsencrypt/boulder/ratelimits/source.go
package ratelimits import ( "context" "fmt" "sync" "time" ) // ErrBucketNotFound indicates that the bucket was not found. var ErrBucketNotFound = fmt.Errorf("bucket not found") // Source is an interface for creating and modifying TATs. type Source interface { // BatchSet stores the TATs at the specified bucketK...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/ratelimits/limiter.go
third-party/github.com/letsencrypt/boulder/ratelimits/limiter.go
package ratelimits import ( "context" "errors" "fmt" "math" "math/rand/v2" "slices" "strings" "time" "github.com/jmhodges/clock" "github.com/prometheus/client_golang/prometheus" berrors "github.com/letsencrypt/boulder/errors" ) const ( // Allowed is used for rate limit metrics, it's the value of the 'de...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/ratelimits/limiter_test.go
third-party/github.com/letsencrypt/boulder/ratelimits/limiter_test.go
package ratelimits import ( "context" "math/rand/v2" "net" "net/netip" "testing" "time" "github.com/jmhodges/clock" "github.com/letsencrypt/boulder/config" berrors "github.com/letsencrypt/boulder/errors" "github.com/letsencrypt/boulder/metrics" "github.com/letsencrypt/boulder/test" ) // overriddenIP is o...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/ratelimits/source_redis.go
third-party/github.com/letsencrypt/boulder/ratelimits/source_redis.go
package ratelimits import ( "context" "errors" "net" "time" "github.com/jmhodges/clock" "github.com/prometheus/client_golang/prometheus" "github.com/redis/go-redis/v9" ) // Compile-time check that RedisSource implements the source interface. var _ Source = (*RedisSource)(nil) // RedisSource is a ratelimits s...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/ratelimits/utilities.go
third-party/github.com/letsencrypt/boulder/ratelimits/utilities.go
package ratelimits import ( "fmt" "net/netip" "strings" "github.com/weppos/publicsuffix-go/publicsuffix" "github.com/letsencrypt/boulder/core" "github.com/letsencrypt/boulder/identifier" ) // joinWithColon joins the provided args with a colon. func joinWithColon(args ...string) string { return strings.Join(a...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/ratelimits/limit.go
third-party/github.com/letsencrypt/boulder/ratelimits/limit.go
package ratelimits import ( "errors" "fmt" "net/netip" "os" "strings" "github.com/letsencrypt/boulder/config" "github.com/letsencrypt/boulder/core" "github.com/letsencrypt/boulder/identifier" "github.com/letsencrypt/boulder/strictyaml" ) // errLimitDisabled indicates that the limit name specified is valid b...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/ratelimits/transaction_test.go
third-party/github.com/letsencrypt/boulder/ratelimits/transaction_test.go
package ratelimits import ( "fmt" "net/netip" "sort" "testing" "time" "github.com/letsencrypt/boulder/config" "github.com/letsencrypt/boulder/core" "github.com/letsencrypt/boulder/identifier" "github.com/letsencrypt/boulder/test" ) func TestNewTransactionBuilderFromFiles_WithBadLimitsPath(t *testing.T) { t...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/ratelimits/source_redis_test.go
third-party/github.com/letsencrypt/boulder/ratelimits/source_redis_test.go
package ratelimits import ( "context" "testing" "time" "github.com/letsencrypt/boulder/cmd" "github.com/letsencrypt/boulder/metrics" "github.com/letsencrypt/boulder/test" "github.com/jmhodges/clock" "github.com/redis/go-redis/v9" ) func newTestRedisSource(clk clock.FakeClock, addrs map[string]string) *Redis...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/ratelimits/utilities_test.go
third-party/github.com/letsencrypt/boulder/ratelimits/utilities_test.go
package ratelimits import ( "net/netip" "slices" "testing" "github.com/letsencrypt/boulder/identifier" ) func TestCoveringIdentifiers(t *testing.T) { cases := []struct { name string idents identifier.ACMEIdentifiers wantErr string want []string }{ { name: "empty string", idents: identifi...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/tools/release/branch/main.go
third-party/github.com/letsencrypt/boulder/tools/release/branch/main.go
/* Branch Release creates a new Boulder hotfix release branch and pushes it to GitHub. It ensures that the release branch has a standard name, and starts at a previously-tagged mainline release. The expectation is that this branch will then be the target of one or more PRs copying (cherry-picking) commits from main to...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/tools/release/tag/main.go
third-party/github.com/letsencrypt/boulder/tools/release/tag/main.go
/* Tag Release creates a new Boulder release tag and pushes it to GitHub. It ensures that the release tag points to the correct commit, has standardized formatting of both the tag itself and its message, and is GPG-signed. It always produces Semantic Versioning tags of the form v0.YYYYMMDD.N, where: - the major vers...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/tools/nameid/nameid.go
third-party/github.com/letsencrypt/boulder/tools/nameid/nameid.go
package main import ( "flag" "fmt" "os" "github.com/letsencrypt/boulder/issuance" ) func usage() { fmt.Printf("Usage: %s [OPTIONS] [ISSUER CERTIFICATE(S)]\n", os.Args[0]) } func main() { var shorthandFlag = flag.Bool("s", false, "Display only the nameid for each given issuer certificate") flag.Parse() if l...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/mocks/ca.go
third-party/github.com/letsencrypt/boulder/mocks/ca.go
package mocks import ( "context" "crypto/x509" "encoding/pem" "fmt" "google.golang.org/grpc" capb "github.com/letsencrypt/boulder/ca/proto" ) // MockCA is a mock of a CA that always returns the cert from PEM in response to // IssueCertificate. type MockCA struct { PEM []byte } // IssueCertificate is a mock ...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/mocks/grpc.go
third-party/github.com/letsencrypt/boulder/mocks/grpc.go
package mocks import ( "io" "google.golang.org/grpc" ) // ServerStreamClient is a mock which satisfies the grpc.ClientStream interface, // allowing it to be returned by methods where the server returns a stream of // results. It can be populated with a list of results to return, or an error // to return. type Serv...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/mocks/publisher.go
third-party/github.com/letsencrypt/boulder/mocks/publisher.go
package mocks import ( "context" "google.golang.org/grpc" pubpb "github.com/letsencrypt/boulder/publisher/proto" ) // PublisherClient is a mock type PublisherClient struct { // empty } // SubmitToSingleCTWithResult is a mock func (*PublisherClient) SubmitToSingleCTWithResult(_ context.Context, _ *pubpb.Request...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/mocks/sa.go
third-party/github.com/letsencrypt/boulder/mocks/sa.go
package mocks import ( "bytes" "context" "crypto/x509" "errors" "math/rand/v2" "os" "time" "github.com/go-jose/go-jose/v4" "github.com/jmhodges/clock" "google.golang.org/grpc" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" "google.golang.org/protobuf/types/known/emptypb" "google.golang.o...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/mocks/emailexporter.go
third-party/github.com/letsencrypt/boulder/mocks/emailexporter.go
package mocks import ( "context" "sync" "google.golang.org/grpc" "google.golang.org/protobuf/types/known/emptypb" "github.com/letsencrypt/boulder/email" emailpb "github.com/letsencrypt/boulder/email/proto" ) // MockPardotClientImpl is a mock implementation of PardotClient. type MockPardotClientImpl struct { ...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/linter.go
third-party/github.com/letsencrypt/boulder/linter/linter.go
package linter import ( "bytes" "crypto" "crypto/ecdsa" "crypto/rand" "crypto/rsa" "crypto/x509" "fmt" "strings" zlintx509 "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3" "github.com/zmap/zlint/v3/lint" "github.com/letsencrypt/boulder/core" _ "github.com/letsencrypt/boulder/linter/lints/cabf_...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/linter_test.go
third-party/github.com/letsencrypt/boulder/linter/linter_test.go
package linter import ( "crypto/ecdsa" "crypto/ed25519" "crypto/elliptic" "crypto/rsa" "math/big" "strings" "testing" "github.com/letsencrypt/boulder/test" ) func TestMakeSigner_RSA(t *testing.T) { rsaMod, ok := big.NewInt(0).SetString(strings.Repeat("ff", 128), 16) test.Assert(t, ok, "failed to set RSA mo...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/common_test.go
third-party/github.com/letsencrypt/boulder/linter/lints/common_test.go
package lints import ( "testing" "golang.org/x/crypto/cryptobyte" "golang.org/x/crypto/cryptobyte/asn1" "github.com/letsencrypt/boulder/test" ) var onlyContainsUserCertsTag = asn1.Tag(1).ContextSpecific() var onlyContainsCACertsTag = asn1.Tag(2).ContextSpecific() func TestReadOptionalASN1BooleanWithTag(t *test...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/common.go
third-party/github.com/letsencrypt/boulder/linter/lints/common.go
package lints import ( "bytes" "net/url" "time" "github.com/zmap/zcrypto/encoding/asn1" "github.com/zmap/zcrypto/x509/pkix" "github.com/zmap/zlint/v3/lint" "golang.org/x/crypto/cryptobyte" cryptobyte_asn1 "golang.org/x/crypto/cryptobyte/asn1" ) const ( // CABF Baseline Requirements 6.3.2 Certificate operati...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/cabf_br/lint_crl_validity_period.go
third-party/github.com/letsencrypt/boulder/linter/lints/cabf_br/lint_crl_validity_period.go
package cabfbr import ( "fmt" "time" "github.com/letsencrypt/boulder/linter/lints" "github.com/zmap/zcrypto/encoding/asn1" "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3/lint" "github.com/zmap/zlint/v3/util" "golang.org/x/crypto/cryptobyte" cryptobyte_asn1 "golang.org/x/crypto/cryptobyte/asn1" ) ...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/cabf_br/lint_crl_acceptable_reason_codes.go
third-party/github.com/letsencrypt/boulder/linter/lints/cabf_br/lint_crl_acceptable_reason_codes.go
package cabfbr import ( "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3/lint" "github.com/letsencrypt/boulder/linter/lints" ) type crlAcceptableReasonCodes struct{} /************************************************ Baseline Requirements: 7.2.2.1: The CRLReason indicated MUST NOT be unspecified (0). The ...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/cabf_br/lint_crl_validity_period_test.go
third-party/github.com/letsencrypt/boulder/linter/lints/cabf_br/lint_crl_validity_period_test.go
package cabfbr import ( "fmt" "strings" "testing" "github.com/zmap/zlint/v3/lint" "github.com/letsencrypt/boulder/linter/lints/test" ) func TestCrlValidityPeriod(t *testing.T) { t.Parallel() testCases := []struct { name string want lint.LintStatus wantSubStr string }{ { name: "good",...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/cabf_br/lint_crl_acceptable_reason_codes_test.go
third-party/github.com/letsencrypt/boulder/linter/lints/cabf_br/lint_crl_acceptable_reason_codes_test.go
package cabfbr import ( "fmt" "strings" "testing" "github.com/zmap/zlint/v3/lint" "github.com/letsencrypt/boulder/linter/lints/test" ) func TestCrlAcceptableReasonCodes(t *testing.T) { t.Parallel() testCases := []struct { name string want lint.LintStatus wantSubStr string }{ { // crl...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/cabf_br/lint_crl_no_critical_reason_codes_test.go
third-party/github.com/letsencrypt/boulder/linter/lints/cabf_br/lint_crl_no_critical_reason_codes_test.go
package cabfbr import ( "fmt" "strings" "testing" "github.com/zmap/zlint/v3/lint" "github.com/letsencrypt/boulder/linter/lints/test" ) func TestCrlCriticalReasonCodes(t *testing.T) { t.Parallel() testCases := []struct { name string want lint.LintStatus wantSubStr string }{ { name: "g...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/cabf_br/lint_crl_no_critical_reason_codes.go
third-party/github.com/letsencrypt/boulder/linter/lints/cabf_br/lint_crl_no_critical_reason_codes.go
package cabfbr import ( "github.com/zmap/zcrypto/encoding/asn1" "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3/lint" "github.com/zmap/zlint/v3/util" ) type crlCriticalReasonCodes struct{} /************************************************ Baseline Requirements: 7.2.2.1: If present, [the reasonCode] exte...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/chrome/e_scts_from_same_operator.go
third-party/github.com/letsencrypt/boulder/linter/lints/chrome/e_scts_from_same_operator.go
package chrome import ( "time" "github.com/zmap/zcrypto/x509" "github.com/zmap/zcrypto/x509/ct" "github.com/zmap/zlint/v3/lint" "github.com/zmap/zlint/v3/util" "github.com/letsencrypt/boulder/ctpolicy/loglist" "github.com/letsencrypt/boulder/linter/lints" ) type sctsFromSameOperator struct { logList loglist...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_root_ca_cert_validity_period_greater_than_25_years.go
third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_root_ca_cert_validity_period_greater_than_25_years.go
package cpcps import ( "time" "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3/lint" "github.com/zmap/zlint/v3/util" "github.com/letsencrypt/boulder/linter/lints" ) type rootCACertValidityTooLong struct{} func init() { lint.RegisterCertificateLint(&lint.CertificateLint{ LintMetadata: lint.LintMetad...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_crl_is_not_delta.go
third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_crl_is_not_delta.go
package cpcps import ( "github.com/zmap/zcrypto/encoding/asn1" "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3/lint" "github.com/letsencrypt/boulder/linter/lints" ) type crlIsNotDelta struct{} /************************************************ RFC 5280: 5.2.4 Section 5.2.4 defines a Delta CRL, and all ...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_crl_has_no_cert_issuers.go
third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_crl_has_no_cert_issuers.go
package cpcps import ( "github.com/zmap/zcrypto/encoding/asn1" "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3/lint" "github.com/letsencrypt/boulder/linter/lints" ) type crlHasNoCertIssuers struct{} /************************************************ RFC 5280: 5.3.3 Section 5.3.3 defines the Certificate...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_crl_has_idp.go
third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_crl_has_idp.go
package cpcps import ( "net/url" "github.com/zmap/zcrypto/encoding/asn1" "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3/lint" "golang.org/x/crypto/cryptobyte" cryptobyte_asn1 "golang.org/x/crypto/cryptobyte/asn1" "github.com/letsencrypt/boulder/linter/lints" ) type crlHasIDP struct{} /************...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_crl_has_no_cert_issuers_test.go
third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_crl_has_no_cert_issuers_test.go
package cpcps import ( "fmt" "strings" "testing" "github.com/zmap/zlint/v3/lint" "github.com/letsencrypt/boulder/linter/lints/test" ) func TestCrlHasNoCertIssuers(t *testing.T) { t.Parallel() testCases := []struct { name string want lint.LintStatus wantSubStr string }{ { name: "good"...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_crl_has_idp_test.go
third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_crl_has_idp_test.go
package cpcps import ( "fmt" "strings" "testing" "github.com/zmap/zlint/v3/lint" linttest "github.com/letsencrypt/boulder/linter/lints/test" ) func TestCrlHasIDP(t *testing.T) { t.Parallel() testCases := []struct { name string want lint.LintStatus wantSubStr string }{ { name: "good",...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_crl_is_not_delta_test.go
third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_crl_is_not_delta_test.go
package cpcps import ( "fmt" "strings" "testing" "github.com/zmap/zlint/v3/lint" "github.com/letsencrypt/boulder/linter/lints/test" ) func TestCrlIsNotDelta(t *testing.T) { t.Parallel() testCases := []struct { name string want lint.LintStatus wantSubStr string }{ { name: "good", w...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_crl_has_no_aia_test.go
third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_crl_has_no_aia_test.go
package cpcps import ( "fmt" "strings" "testing" "github.com/zmap/zlint/v3/lint" "github.com/letsencrypt/boulder/linter/lints/test" ) func TestCrlHasNoAIA(t *testing.T) { t.Parallel() testCases := []struct { name string want lint.LintStatus wantSubStr string }{ { name: "good", wan...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_crl_has_no_aia.go
third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_crl_has_no_aia.go
package cpcps import ( "github.com/zmap/zcrypto/encoding/asn1" "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3/lint" "github.com/letsencrypt/boulder/linter/lints" ) type crlHasNoAIA struct{} /************************************************ RFC 5280: 5.2.7 The requirements around the Authority Informa...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_subordinate_ca_cert_validity_period_greater_than_8_years.go
third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_subordinate_ca_cert_validity_period_greater_than_8_years.go
package cpcps import ( "time" "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3/lint" "github.com/zmap/zlint/v3/util" "github.com/letsencrypt/boulder/linter/lints" ) type subordinateCACertValidityTooLong struct{} func init() { lint.RegisterCertificateLint(&lint.CertificateLint{ LintMetadata: lint.Li...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_validity_period_has_extra_second.go
third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_validity_period_has_extra_second.go
package cpcps import ( "time" "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3/lint" "github.com/letsencrypt/boulder/linter/lints" ) type certValidityNotRound struct{} func init() { lint.RegisterCertificateLint(&lint.CertificateLint{ LintMetadata: lint.LintMetadata{ Name: "w_validity_per...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_subscriber_cert_validity_greater_than_100_days.go
third-party/github.com/letsencrypt/boulder/linter/lints/cpcps/lint_subscriber_cert_validity_greater_than_100_days.go
package cpcps import ( "time" "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3/lint" "github.com/zmap/zlint/v3/util" "github.com/letsencrypt/boulder/linter/lints" ) type subscriberCertValidityTooLong struct{} func init() { lint.RegisterCertificateLint(&lint.CertificateLint{ LintMetadata: lint.LintM...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/test/helpers.go
third-party/github.com/letsencrypt/boulder/linter/lints/test/helpers.go
package test import ( "encoding/pem" "os" "testing" "github.com/zmap/zcrypto/x509" "github.com/letsencrypt/boulder/test" ) func LoadPEMCRL(t *testing.T, filename string) *x509.RevocationList { t.Helper() file, err := os.ReadFile(filename) test.AssertNotError(t, err, "reading CRL file") block, rest := pem.D...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_no_empty_revoked_certificates_list_test.go
third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_no_empty_revoked_certificates_list_test.go
package rfc import ( "fmt" "strings" "testing" "github.com/zmap/zlint/v3/lint" "github.com/letsencrypt/boulder/linter/lints/test" ) func TestCrlNoEmptyRevokedCertsList(t *testing.T) { t.Parallel() testCases := []struct { name string want lint.LintStatus wantSubStr string }{ { name: "...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_has_issuer_name_test.go
third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_has_issuer_name_test.go
package rfc import ( "fmt" "strings" "testing" "github.com/zmap/zlint/v3/lint" "github.com/letsencrypt/boulder/linter/lints/test" ) func TestCrlHasIssuerName(t *testing.T) { t.Parallel() testCases := []struct { name string want lint.LintStatus wantSubStr string }{ { name: "good", ...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_via_pkimetal.go
third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_via_pkimetal.go
package rfc import ( "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3/lint" "github.com/zmap/zlint/v3/util" ) type crlViaPKIMetal struct { PKIMetalConfig } func init() { lint.RegisterRevocationListLint(&lint.RevocationListLint{ LintMetadata: lint.LintMetadata{ Name: "e_pkimetal_lint_cabf_s...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_has_valid_timestamps.go
third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_has_valid_timestamps.go
package rfc import ( "errors" "fmt" "time" "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3/lint" "github.com/zmap/zlint/v3/util" "golang.org/x/crypto/cryptobyte" cryptobyte_asn1 "golang.org/x/crypto/cryptobyte/asn1" ) const ( utcTimeFormat = "YYMMDDHHMMSSZ" generalizedTimeFormat = "YYYYMMD...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_no_empty_revoked_certificates_list.go
third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_no_empty_revoked_certificates_list.go
package rfc import ( "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3/lint" "github.com/zmap/zlint/v3/util" ) type crlNoEmptyRevokedCertsList struct{} /************************************************ RFC 5280: 5.1.2.6 When there are no revoked certificates, the revoked certificates list MUST be absent. *...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_has_issuer_name.go
third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_has_issuer_name.go
package rfc import ( "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3/lint" "github.com/zmap/zlint/v3/util" ) type crlHasIssuerName struct{} /************************************************ RFC 5280: 5.1.2.3 The issuer field MUST contain a non-empty X.500 distinguished name (DN). This lint does not enfo...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_has_number.go
third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_has_number.go
package rfc import ( "github.com/zmap/zcrypto/encoding/asn1" "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3/lint" "github.com/zmap/zlint/v3/util" "github.com/letsencrypt/boulder/linter/lints" ) type crlHasNumber struct{} /************************************************ RFC 5280: 5.2.3 CRL issuers co...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_cert_via_pkimetal.go
third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_cert_via_pkimetal.go
package rfc import ( "context" "encoding/base64" "encoding/json" "fmt" "io" "net/http" "net/url" "slices" "strings" "time" "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3/lint" "github.com/zmap/zlint/v3/util" ) // PKIMetalConfig and its execute method provide a shared basis for linting // both ...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_has_aki.go
third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_has_aki.go
package rfc import ( "github.com/zmap/zcrypto/x509" "github.com/zmap/zlint/v3/lint" "github.com/zmap/zlint/v3/util" "golang.org/x/crypto/cryptobyte" cryptobyte_asn1 "golang.org/x/crypto/cryptobyte/asn1" ) type crlHasAKI struct{} /************************************************ RFC 5280: 5.2.1 Conforming CRL is...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_has_number_test.go
third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_has_number_test.go
package rfc import ( "fmt" "strings" "testing" "github.com/zmap/zlint/v3/lint" "github.com/letsencrypt/boulder/linter/lints/test" ) func TestCrlHasNumber(t *testing.T) { t.Parallel() testCases := []struct { name string want lint.LintStatus wantSubStr string }{ { name: "good", want...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_has_valid_timestamps_test.go
third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_has_valid_timestamps_test.go
package rfc import ( "fmt" "strings" "testing" "github.com/zmap/zlint/v3/lint" "github.com/letsencrypt/boulder/linter/lints/test" ) func TestCrlHasValidTimestamps(t *testing.T) { t.Parallel() testCases := []struct { name string want lint.LintStatus wantSubStr string }{ { name: "good"...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_has_aki_test.go
third-party/github.com/letsencrypt/boulder/linter/lints/rfc/lint_crl_has_aki_test.go
package rfc import ( "fmt" "strings" "testing" "github.com/zmap/zlint/v3/lint" "github.com/letsencrypt/boulder/linter/lints/test" ) func TestCrlHasAKI(t *testing.T) { t.Parallel() testCases := []struct { name string want lint.LintStatus wantSubStr string }{ { name: "good", want: l...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/identifier/identifier.go
third-party/github.com/letsencrypt/boulder/identifier/identifier.go
// The identifier package defines types for RFC 8555 ACME identifiers. // // It exists as a separate package to prevent an import loop between the core // and probs packages. // // Function naming conventions: // - "New" creates a new instance from one or more simple base type inputs. // - "From" and "To" extract infor...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/identifier/identifier_test.go
third-party/github.com/letsencrypt/boulder/identifier/identifier_test.go
package identifier import ( "crypto/x509" "crypto/x509/pkix" "net" "net/netip" "reflect" "slices" "testing" ) // TestFromX509 tests FromCert and FromCSR, which are fromX509's public // wrappers. func TestFromX509(t *testing.T) { cases := []struct { name string subject pkix.Name dnsNames []...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/nonce/nonce_test.go
third-party/github.com/letsencrypt/boulder/nonce/nonce_test.go
package nonce import ( "fmt" "testing" "github.com/letsencrypt/boulder/metrics" "github.com/letsencrypt/boulder/test" ) func TestValidNonce(t *testing.T) { ns, err := NewNonceService(metrics.NoopRegisterer, 0, "") test.AssertNotError(t, err, "Could not create nonce service") n, err := ns.Nonce() test.AssertN...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/nonce/nonce.go
third-party/github.com/letsencrypt/boulder/nonce/nonce.go
// Package nonce implements a service for generating and redeeming nonces. // To generate a nonce, it encrypts a monotonically increasing counter (latest) // using an authenticated cipher. To redeem a nonce, it checks that the nonce // decrypts to a valid integer between the earliest and latest counter values, // and t...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/nonce/proto/nonce_grpc.pb.go
third-party/github.com/letsencrypt/boulder/nonce/proto/nonce_grpc.pb.go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v3.20.1 // source: nonce.proto package proto import ( context "context" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" emptypb "goog...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/nonce/proto/nonce.pb.go
third-party/github.com/letsencrypt/boulder/nonce/proto/nonce.pb.go
// Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.5 // protoc v3.20.1 // source: nonce.proto package proto import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" emptypb "google.golang.org/protobuf...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/errors/errors_test.go
third-party/github.com/letsencrypt/boulder/errors/errors_test.go
package errors import ( "testing" "github.com/letsencrypt/boulder/identifier" "github.com/letsencrypt/boulder/test" ) // TestWithSubErrors tests that a boulder error can be created by adding // suberrors to an existing top level boulder error func TestWithSubErrors(t *testing.T) { topErr := &BoulderError{ Type...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/errors/errors.go
third-party/github.com/letsencrypt/boulder/errors/errors.go
// Package errors provide a special error type for use in Boulder. This error // type carries additional type information with it, and has two special powers: // // 1. It is recognized by our gRPC code, and the type metadata and detail string // will cross gRPC boundaries intact. // // 2. It is recognized by our fronte...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false
cli/cli
https://github.com/cli/cli/blob/c534a758887878331dda780aeb696b113f37b4ab/third-party/github.com/letsencrypt/boulder/observer/obs_conf_test.go
third-party/github.com/letsencrypt/boulder/observer/obs_conf_test.go
package observer import ( "errors" "testing" "time" "github.com/letsencrypt/boulder/cmd" "github.com/letsencrypt/boulder/config" "github.com/letsencrypt/boulder/metrics" "github.com/letsencrypt/boulder/observer/probers" _ "github.com/letsencrypt/boulder/observer/probers/mock" "github.com/letsencrypt/boulder/...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
false