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/grpc/resolver.go
third-party/github.com/letsencrypt/boulder/grpc/resolver.go
package grpc import ( "fmt" "net" "net/netip" "strings" "google.golang.org/grpc/resolver" ) // staticBuilder implements the `resolver.Builder` interface. type staticBuilder struct{} // newStaticBuilder creates a `staticBuilder` used to construct static DNS // resolvers. func newStaticBuilder() resolver.Builder...
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/grpc/resolver_test.go
third-party/github.com/letsencrypt/boulder/grpc/resolver_test.go
package grpc import ( "testing" "github.com/letsencrypt/boulder/test" "google.golang.org/grpc/resolver" ) func Test_parseResolverIPAddress(t *testing.T) { tests := []struct { name string addr string expectTarget *resolver.Address wantErr bool }{ {"valid, IPv4 address", "127.0.0.1:...
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/grpc/client_test.go
third-party/github.com/letsencrypt/boulder/grpc/client_test.go
package grpc import ( "crypto/tls" "testing" "github.com/jmhodges/clock" "github.com/letsencrypt/boulder/cmd" "github.com/letsencrypt/boulder/metrics" "github.com/letsencrypt/boulder/test" _ "google.golang.org/grpc/health" ) func TestClientSetup(t *testing.T) { tests := []struct { name string cfg...
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/grpc/interceptors_test.go
third-party/github.com/letsencrypt/boulder/grpc/interceptors_test.go
package grpc import ( "context" "crypto/tls" "crypto/x509" "errors" "fmt" "log" "net" "strconv" "strings" "sync" "testing" "time" "github.com/jmhodges/clock" "github.com/prometheus/client_golang/prometheus" "google.golang.org/grpc" "google.golang.org/grpc/balancer/roundrobin" "google.golang.org/grpc/...
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/grpc/interceptors.go
third-party/github.com/letsencrypt/boulder/grpc/interceptors.go
package grpc import ( "context" "fmt" "strconv" "strings" "time" "github.com/jmhodges/clock" "github.com/prometheus/client_golang/prometheus" "google.golang.org/grpc" "google.golang.org/grpc/codes" "google.golang.org/grpc/credentials" "google.golang.org/grpc/metadata" "google.golang.org/grpc/peer" "googl...
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/grpc/server.go
third-party/github.com/letsencrypt/boulder/grpc/server.go
package grpc import ( "context" "crypto/tls" "errors" "fmt" "net" "slices" "strings" "time" grpc_prometheus "github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus" "github.com/jmhodges/clock" "github.com/prometheus/client_golang/prometheus" "go.opentelemetry.io/contrib/instrumentation/google.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/grpc/pb-marshalling.go
third-party/github.com/letsencrypt/boulder/grpc/pb-marshalling.go
// Copyright 2016 ISRG. All rights reserved // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. package grpc import ( "fmt" "net/netip" "time" "github.com/go-jose...
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/grpc/skew_integration.go
third-party/github.com/letsencrypt/boulder/grpc/skew_integration.go
//go:build integration package grpc import "time" // tooSkewed always returns false, but is only built when the integration build // flag is set. We use this to replace the real tooSkewed function in the // integration tests, which make extensive use of fake clocks. func tooSkewed(_ time.Duration) bool { return fal...
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/grpc/generate.go
third-party/github.com/letsencrypt/boulder/grpc/generate.go
package grpc //go:generate ./protogen.sh
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/grpc/creds/creds.go
third-party/github.com/letsencrypt/boulder/grpc/creds/creds.go
package creds import ( "context" "crypto/tls" "crypto/x509" "errors" "fmt" "net" "google.golang.org/grpc/credentials" ) var ( ErrClientHandshakeNop = errors.New( "boulder/grpc/creds: Client-side handshakes are not implemented with " + "serverTransportCredentials") ErrServerHandshakeNop = errors.New( ...
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/grpc/creds/creds_test.go
third-party/github.com/letsencrypt/boulder/grpc/creds/creds_test.go
package creds import ( "context" "crypto/ecdsa" "crypto/elliptic" "crypto/rand" "crypto/tls" "crypto/x509" "math/big" "net" "net/http/httptest" "testing" "time" "github.com/jmhodges/clock" "github.com/letsencrypt/boulder/test" ) func TestServerTransportCredentials(t *testing.T) { _, badCert := test.Th...
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/grpc/test_proto/interceptors_test_grpc.pb.go
third-party/github.com/letsencrypt/boulder/grpc/test_proto/interceptors_test_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: interceptors_test.proto package test_proto import ( context "context" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/statu...
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/grpc/test_proto/generate.go
third-party/github.com/letsencrypt/boulder/grpc/test_proto/generate.go
package test_proto //go:generate sh -c "cd ../.. && protoc -I grpc/test_proto/ -I . --go_out=grpc/test_proto --go-grpc_out=grpc/test_proto --go_opt=paths=source_relative --go-grpc_opt=paths=source_relative grpc/test_proto/interceptors_test.proto"
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/grpc/test_proto/interceptors_test.pb.go
third-party/github.com/letsencrypt/boulder/grpc/test_proto/interceptors_test.pb.go
// Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.5 // protoc v3.20.1 // source: interceptors_test.proto package test_proto import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" durationpb "google...
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/grpc/internal/grpcrand/grpcrand.go
third-party/github.com/letsencrypt/boulder/grpc/internal/grpcrand/grpcrand.go
/* * * Copyright 2018 gRPC authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agree...
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/grpc/internal/backoff/backoff.go
third-party/github.com/letsencrypt/boulder/grpc/internal/backoff/backoff.go
/* * * Copyright 2017 gRPC authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agree...
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/grpc/internal/leakcheck/leakcheck.go
third-party/github.com/letsencrypt/boulder/grpc/internal/leakcheck/leakcheck.go
/* * * Copyright 2017 gRPC authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agree...
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/grpc/internal/leakcheck/leakcheck_test.go
third-party/github.com/letsencrypt/boulder/grpc/internal/leakcheck/leakcheck_test.go
/* * * Copyright 2017 gRPC authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agree...
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/grpc/internal/resolver/dns/dns_resolver.go
third-party/github.com/letsencrypt/boulder/grpc/internal/resolver/dns/dns_resolver.go
/* * * Copyright 2018 gRPC authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agree...
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/grpc/internal/resolver/dns/dns_resolver_test.go
third-party/github.com/letsencrypt/boulder/grpc/internal/resolver/dns/dns_resolver_test.go
/* * * Copyright 2018 gRPC authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agree...
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/grpc/internal/testutils/parse_url.go
third-party/github.com/letsencrypt/boulder/grpc/internal/testutils/parse_url.go
/* * * Copyright 2023 gRPC authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agree...
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/grpc/internal/testutils/channel.go
third-party/github.com/letsencrypt/boulder/grpc/internal/testutils/channel.go
/* * * Copyright 2020 gRPC authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agree...
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/grpc/noncebalancer/noncebalancer.go
third-party/github.com/letsencrypt/boulder/grpc/noncebalancer/noncebalancer.go
package noncebalancer import ( "errors" "sync" "github.com/letsencrypt/boulder/nonce" "google.golang.org/grpc/balancer" "google.golang.org/grpc/balancer/base" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) const ( // Name is the name used to register the nonce balancer with the gRPC // ru...
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/grpc/noncebalancer/noncebalancer_test.go
third-party/github.com/letsencrypt/boulder/grpc/noncebalancer/noncebalancer_test.go
package noncebalancer import ( "context" "testing" "google.golang.org/grpc/balancer" "google.golang.org/grpc/balancer/base" "google.golang.org/grpc/resolver" "github.com/letsencrypt/boulder/nonce" "github.com/letsencrypt/boulder/test" ) func TestPickerPicksCorrectBackend(t *testing.T) { _, p, subConns := se...
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/unpause/unpause.go
third-party/github.com/letsencrypt/boulder/unpause/unpause.go
package unpause import ( "errors" "fmt" "strconv" "strings" "time" "github.com/go-jose/go-jose/v4" "github.com/go-jose/go-jose/v4/jwt" "github.com/jmhodges/clock" "github.com/letsencrypt/boulder/cmd" ) const ( // API // Changing this value will invalidate all existing JWTs. APIVersion = "v1" APIPrefix...
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/unpause/unpause_test.go
third-party/github.com/letsencrypt/boulder/unpause/unpause_test.go
package unpause import ( "testing" "time" "github.com/go-jose/go-jose/v4/jwt" "github.com/jmhodges/clock" "github.com/letsencrypt/boulder/cmd" "github.com/letsencrypt/boulder/test" ) func TestUnpauseJWT(t *testing.T) { fc := clock.NewFake() signer, err := NewJWTSigner(cmd.HMACKeyConfig{KeyFile: "../test/se...
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/semaphore/semaphore.go
third-party/github.com/letsencrypt/boulder/semaphore/semaphore.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Modified by Boulder to provide a load-shedding mechanism. // Package semaphore provides a weighted semaphore implementation. package semaphore // import "gol...
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/semaphore/semaphore_bench_test.go
third-party/github.com/letsencrypt/boulder/semaphore/semaphore_bench_test.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build go1.7 // +build go1.7 package semaphore_test import ( "context" "fmt" "testing" "github.com/letsencrypt/boulder/semaphore" ) // weighted is 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/semaphore/semaphore_test.go
third-party/github.com/letsencrypt/boulder/semaphore/semaphore_test.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package semaphore_test import ( "context" "math/rand/v2" "runtime" "sync" "testing" "time" "golang.org/x/sync/errgroup" "github.com/letsencrypt/bould...
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/semaphore/semaphore_example_test.go
third-party/github.com/letsencrypt/boulder/semaphore/semaphore_example_test.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package semaphore_test import ( "context" "fmt" "log" "runtime" "golang.org/x/sync/semaphore" ) // Example_workerPool demonstrates how to use a semaphor...
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/rocsp/mocks.go
third-party/github.com/letsencrypt/boulder/rocsp/mocks.go
package rocsp import ( "context" "fmt" "golang.org/x/crypto/ocsp" ) // MockWriteClient is a mock type MockWriteClient struct { StoreResponseReturnError error } // StoreResponse mocks a rocsp.StoreResponse method and returns nil or an // error depending on the desired state. func (r MockWriteClient) StoreRespons...
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/rocsp/rocsp_test.go
third-party/github.com/letsencrypt/boulder/rocsp/rocsp_test.go
package rocsp import ( "bytes" "context" "fmt" "os" "testing" "time" "github.com/jmhodges/clock" "github.com/redis/go-redis/v9" "golang.org/x/crypto/ocsp" "github.com/letsencrypt/boulder/cmd" "github.com/letsencrypt/boulder/metrics" ) func makeClient() (*RWClient, clock.Clock) { CACertFile := "../test/c...
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/rocsp/rocsp.go
third-party/github.com/letsencrypt/boulder/rocsp/rocsp.go
package rocsp import ( "context" "errors" "fmt" "time" "github.com/letsencrypt/boulder/core" "github.com/jmhodges/clock" "github.com/prometheus/client_golang/prometheus" "github.com/redis/go-redis/v9" "golang.org/x/crypto/ocsp" ) var ErrRedisNotFound = errors.New("redis key not found") // ROClient represe...
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/rocsp/config/rocsp_config.go
third-party/github.com/letsencrypt/boulder/rocsp/config/rocsp_config.go
package rocsp_config import ( "bytes" "crypto/x509/pkix" "encoding/asn1" "errors" "fmt" "strings" "github.com/jmhodges/clock" "github.com/prometheus/client_golang/prometheus" "github.com/redis/go-redis/v9" "golang.org/x/crypto/ocsp" "github.com/letsencrypt/boulder/cmd" "github.com/letsencrypt/boulder/con...
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/rocsp/config/issuers_test.go
third-party/github.com/letsencrypt/boulder/rocsp/config/issuers_test.go
package rocsp_config import ( "encoding/hex" "strings" "testing" "github.com/letsencrypt/boulder/test" "golang.org/x/crypto/ocsp" ) func TestLoadIssuers(t *testing.T) { input := map[string]int{ "../../test/hierarchy/int-e1.cert.pem": 23, "../../test/hierarchy/int-r3.cert.pem": 99, } output, err := LoadIs...
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/precert/corr_test.go
third-party/github.com/letsencrypt/boulder/precert/corr_test.go
package precert import ( "crypto/ecdsa" "crypto/elliptic" "crypto/rand" "crypto/x509" "crypto/x509/pkix" "encoding/pem" "fmt" "math/big" "os" "strings" "testing" "time" ) func TestCorrespondIncorrectArgumentOrder(t *testing.T) { pre, final, err := readPair("testdata/good/precert.pem", "testdata/good/fina...
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/precert/corr.go
third-party/github.com/letsencrypt/boulder/precert/corr.go
package precert import ( "bytes" encoding_asn1 "encoding/asn1" "errors" "fmt" "golang.org/x/crypto/cryptobyte" "golang.org/x/crypto/cryptobyte/asn1" ) // Correspond returns nil if the two certificates are a valid precertificate/final certificate pair. // Order of the arguments matters: the precertificate is fi...
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/core/interfaces.go
third-party/github.com/letsencrypt/boulder/core/interfaces.go
package core import ( "github.com/letsencrypt/boulder/identifier" ) // PolicyAuthority defines the public interface for the Boulder PA // TODO(#5891): Move this interface to a more appropriate location. type PolicyAuthority interface { WillingToIssue(identifier.ACMEIdentifiers) error ChallengeTypesFor(identifier.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/core/challenges.go
third-party/github.com/letsencrypt/boulder/core/challenges.go
package core import "fmt" func newChallenge(challengeType AcmeChallenge, token string) Challenge { return Challenge{ Type: challengeType, Status: StatusPending, Token: token, } } // HTTPChallenge01 constructs a http-01 challenge. func HTTPChallenge01(token string) Challenge { return newChallenge(Challeng...
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/core/util.go
third-party/github.com/letsencrypt/boulder/core/util.go
package core import ( "context" "crypto" "crypto/ecdsa" "crypto/rand" "crypto/rsa" "crypto/sha256" "crypto/x509" "encoding/base64" "encoding/hex" "encoding/pem" "errors" "expvar" "fmt" "io" "math/big" mrand "math/rand/v2" "os" "path" "reflect" "regexp" "sort" "strings" "time" "unicode" "githu...
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/core/objects.go
third-party/github.com/letsencrypt/boulder/core/objects.go
package core import ( "crypto" "encoding/base64" "encoding/json" "fmt" "hash/fnv" "net/netip" "strings" "time" "github.com/go-jose/go-jose/v4" "golang.org/x/crypto/ocsp" "github.com/letsencrypt/boulder/identifier" "github.com/letsencrypt/boulder/probs" "github.com/letsencrypt/boulder/revocation" ) // 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/core/objects_test.go
third-party/github.com/letsencrypt/boulder/core/objects_test.go
package core import ( "crypto/rsa" "encoding/json" "math/big" "net/netip" "testing" "time" "github.com/go-jose/go-jose/v4" "github.com/letsencrypt/boulder/test" ) func TestExpectedKeyAuthorization(t *testing.T) { ch := Challenge{Token: "hi"} jwk1 := &jose.JSONWebKey{Key: &rsa.PublicKey{N: big.NewInt(1234)...
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/core/challenges_test.go
third-party/github.com/letsencrypt/boulder/core/challenges_test.go
package core import ( "testing" "github.com/letsencrypt/boulder/test" ) func TestNewChallenge(t *testing.T) { challenge := newChallenge(ChallengeTypeDNS01, "asd") test.Assert(t, challenge.Token == "asd", "token is not set") }
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/core/core_test.go
third-party/github.com/letsencrypt/boulder/core/core_test.go
package core import ( "encoding/base64" "encoding/json" "testing" "github.com/go-jose/go-jose/v4" "github.com/letsencrypt/boulder/test" ) // challenges.go var accountKeyJSON = `{ "kty":"RSA", "n":"yNWVhtYEKJR21y9xsHV-PD_bYwbXSeNuFal46xYxVfRL5mqha7vttvjB_vc7Xg2RvgCxHPCqoxgMPTzHrZT75LjCwIW2K_klBYN8oYvTwwmeS...
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/core/util_test.go
third-party/github.com/letsencrypt/boulder/core/util_test.go
package core import ( "context" "encoding/json" "errors" "fmt" "math" "math/big" "net/netip" "os" "slices" "sort" "strings" "testing" "time" "github.com/go-jose/go-jose/v4" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" "google.golang.org/protobuf/types/known/durationpb" "google.gola...
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/core/proto/core.pb.go
third-party/github.com/letsencrypt/boulder/core/proto/core.pb.go
// Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.5 // protoc v3.20.1 // source: core.proto package proto import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" timestamppb "google.golang.org/proto...
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/akamai/cache-client.go
third-party/github.com/letsencrypt/boulder/akamai/cache-client.go
package akamai import ( "bytes" "crypto/hmac" "crypto/md5" //nolint: gosec // MD5 is required by the Akamai API. "crypto/sha256" "crypto/x509" "encoding/base64" "encoding/json" "errors" "fmt" "io" "net/http" "net/url" "strings" "time" "github.com/jmhodges/clock" "github.com/prometheus/client_golang/pr...
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/akamai/cache-client_test.go
third-party/github.com/letsencrypt/boulder/akamai/cache-client_test.go
package akamai import ( "encoding/json" "fmt" "io" "net/http" "net/http/httptest" "strings" "testing" "time" "github.com/jmhodges/clock" blog "github.com/letsencrypt/boulder/log" "github.com/letsencrypt/boulder/metrics" "github.com/letsencrypt/boulder/test" ) func TestMakeAuthHeader(t *testing.T) { log...
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/akamai/proto/akamai_grpc.pb.go
third-party/github.com/letsencrypt/boulder/akamai/proto/akamai_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: akamai.proto package proto import ( context "context" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" emptypb "goo...
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/akamai/proto/akamai.pb.go
third-party/github.com/letsencrypt/boulder/akamai/proto/akamai.pb.go
// Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.5 // protoc v3.20.1 // source: akamai.proto package proto import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" emptypb "google.golang.org/protobu...
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/config/duration.go
third-party/github.com/letsencrypt/boulder/config/duration.go
package config import ( "encoding/json" "errors" "reflect" "time" ) // Duration is custom type embedding a time.Duration which allows defining // methods such as serialization to YAML or JSON. type Duration struct { time.Duration `validate:"required"` } // DurationCustomTypeFunc enables registration of our cust...
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/privatekey/privatekey.go
third-party/github.com/letsencrypt/boulder/privatekey/privatekey.go
package privatekey import ( "crypto" "crypto/ecdsa" "crypto/rand" "crypto/rsa" "crypto/sha256" "crypto/x509" "encoding/pem" "errors" "fmt" "hash" "os" ) func makeVerifyHash() (hash.Hash, error) { randBytes := make([]byte, 32) _, err := rand.Read(randBytes) if err != nil { return nil, err } hash := ...
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/privatekey/privatekey_test.go
third-party/github.com/letsencrypt/boulder/privatekey/privatekey_test.go
package privatekey import ( "crypto/ecdsa" "crypto/elliptic" "crypto/rand" "crypto/rsa" "testing" "github.com/letsencrypt/boulder/test" ) func TestVerifyRSAKeyPair(t *testing.T) { privKey1, err := rsa.GenerateKey(rand.Reader, 2048) test.AssertNotError(t, err, "Failed while generating test key 1") _, _, 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/log/log_test.go
third-party/github.com/letsencrypt/boulder/log/log_test.go
package log import ( "bytes" "fmt" "log/syslog" "net" "os" "strings" "sync" "testing" "time" "github.com/jmhodges/clock" "github.com/letsencrypt/boulder/test" ) const stdoutLevel = 7 const syslogLevel = 7 func setup(t *testing.T) *impl { // Write all logs to UDP on a high port so as to not bother the sy...
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/log/mock.go
third-party/github.com/letsencrypt/boulder/log/mock.go
package log import ( "fmt" "log/syslog" "regexp" "strings" "time" ) // UseMock sets a mock logger as the default logger, and returns it. func UseMock() *Mock { m := NewMock() _ = Set(m) return m } // NewMock creates a mock logger. func NewMock() *Mock { return &Mock{impl{newMockWriter()}} } // NewWaitingMo...
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/log/log.go
third-party/github.com/letsencrypt/boulder/log/log.go
package log import ( "encoding/base64" "encoding/binary" "encoding/json" "errors" "fmt" "hash/crc32" "io" "log/syslog" "os" "strings" "sync" "github.com/jmhodges/clock" "golang.org/x/term" "github.com/letsencrypt/boulder/core" ) // A Logger logs messages with explicit priority levels. It is // impleme...
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/log/prod_prefix.go
third-party/github.com/letsencrypt/boulder/log/prod_prefix.go
//go:build !integration package log import ( "fmt" "os" "strings" "github.com/letsencrypt/boulder/core" ) // getPrefix returns the prefix and clkFormat that should be used by the // stdout logger. func getPrefix() (string, string) { shortHostname := "unknown" datacenter := "unknown" hostname, err := os.Hostn...
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/log/test_prefix.go
third-party/github.com/letsencrypt/boulder/log/test_prefix.go
//go:build integration package log // getPrefix returns the prefix and clkFormat that should be used by the // stdout logger. func getPrefix() (string, string) { return "", "15:04:05.000000" }
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/log/validator/validator_test.go
third-party/github.com/letsencrypt/boulder/log/validator/validator_test.go
package validator import ( "testing" "github.com/letsencrypt/boulder/test" ) func TestLineValidAccepts(t *testing.T) { err := lineValid("2020-07-06T18:07:43.109389+00:00 70877f679c72 datacenter 6 boulder-wfe[1595]: kKG6cwA Caught SIGTERM") test.AssertNotError(t, err, "errored on valid checksum") } func TestLine...
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/log/validator/validator.go
third-party/github.com/letsencrypt/boulder/log/validator/validator.go
package validator import ( "context" "encoding/base64" "errors" "fmt" "os" "path/filepath" "strings" "sync" "time" "github.com/nxadm/tail" "github.com/prometheus/client_golang/prometheus" "github.com/letsencrypt/boulder/log" ) var errInvalidChecksum = errors.New("invalid checksum length") type Validato...
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/log/validator/tail_logger.go
third-party/github.com/letsencrypt/boulder/log/validator/tail_logger.go
package validator import ( "fmt" "github.com/letsencrypt/boulder/log" ) // tailLogger is an adapter to the nxadm/tail module's logging interface. type tailLogger struct { log.Logger } func (tl tailLogger) Fatal(v ...interface{}) { tl.AuditErr(fmt.Sprint(v...)) } func (tl tailLogger) Fatalf(format string, v ...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/issuance/cert_test.go
third-party/github.com/letsencrypt/boulder/issuance/cert_test.go
package issuance import ( "crypto" "crypto/dsa" "crypto/ecdsa" "crypto/elliptic" "crypto/rand" "crypto/rsa" "crypto/x509" "crypto/x509/pkix" "encoding/base64" "net" "reflect" "strings" "testing" "time" ct "github.com/google/certificate-transparency-go" "github.com/jmhodges/clock" "github.com/letsenc...
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/issuance/issuer.go
third-party/github.com/letsencrypt/boulder/issuance/issuer.go
package issuance import ( "crypto" "crypto/ecdsa" "crypto/elliptic" "crypto/rsa" "crypto/x509" "encoding/json" "errors" "fmt" "math/big" "os" "strings" "github.com/jmhodges/clock" "golang.org/x/crypto/ocsp" "github.com/letsencrypt/boulder/core" "github.com/letsencrypt/boulder/linter" "github.com/lets...
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/issuance/crl.go
third-party/github.com/letsencrypt/boulder/issuance/crl.go
package issuance import ( "crypto/rand" "crypto/x509" "fmt" "math/big" "time" "github.com/zmap/zlint/v3/lint" "github.com/letsencrypt/boulder/config" "github.com/letsencrypt/boulder/crl/idp" "github.com/letsencrypt/boulder/linter" ) type CRLProfileConfig struct { ValidityInterval config.Duration MaxBackd...
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/issuance/issuer_test.go
third-party/github.com/letsencrypt/boulder/issuance/issuer_test.go
package issuance import ( "crypto/ecdsa" "crypto/ed25519" "crypto/elliptic" "crypto/rand" "crypto/x509" "crypto/x509/pkix" "fmt" "math/big" "os" "strings" "testing" "time" "github.com/jmhodges/clock" "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/issuance/crl_test.go
third-party/github.com/letsencrypt/boulder/issuance/crl_test.go
package issuance import ( "crypto/x509" "errors" "math/big" "testing" "time" "github.com/jmhodges/clock" "github.com/zmap/zlint/v3/lint" "golang.org/x/crypto/cryptobyte" cryptobyte_asn1 "golang.org/x/crypto/cryptobyte/asn1" "github.com/letsencrypt/boulder/config" "github.com/letsencrypt/boulder/crl/idp" ...
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/issuance/cert.go
third-party/github.com/letsencrypt/boulder/issuance/cert.go
package issuance import ( "bytes" "crypto" "crypto/ecdsa" "crypto/rand" "crypto/rsa" "crypto/x509" "crypto/x509/pkix" "encoding/asn1" "encoding/json" "errors" "fmt" "math/big" "net" "sync" "time" ct "github.com/google/certificate-transparency-go" cttls "github.com/google/certificate-transparency-go/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/must/must_test.go
third-party/github.com/letsencrypt/boulder/must/must_test.go
package must import ( "net/url" "testing" ) func TestDo(t *testing.T) { url := Do(url.Parse("http://example.com")) if url.Host != "example.com" { t.Errorf("expected host to be example.com, got %s", url.Host) } }
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/must/must.go
third-party/github.com/letsencrypt/boulder/must/must.go
package must // Do panics if err is not nil, otherwise returns t. // It is useful in wrapping a two-value function call // where you know statically that the call will succeed. // // Example: // // url := must.Do(url.Parse("http://example.com")) func Do[T any](t T, err error) T { if err != nil { panic(err) } retu...
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/va/va_test.go
third-party/github.com/letsencrypt/boulder/va/va_test.go
package va import ( "context" "crypto/rsa" "encoding/base64" "errors" "fmt" "math/big" "net" "net/http" "net/http/httptest" "net/netip" "os" "strings" "sync" "syscall" "testing" "time" "github.com/go-jose/go-jose/v4" "github.com/jmhodges/clock" "github.com/prometheus/client_golang/prometheus" "goo...
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/va/dns_test.go
third-party/github.com/letsencrypt/boulder/va/dns_test.go
package va import ( "context" "fmt" "net/netip" "testing" "time" "github.com/jmhodges/clock" "github.com/letsencrypt/boulder/bdns" "github.com/letsencrypt/boulder/identifier" "github.com/letsencrypt/boulder/metrics" "github.com/letsencrypt/boulder/probs" "github.com/letsencrypt/boulder/test" ) func TestD...
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/va/utf8filter_test.go
third-party/github.com/letsencrypt/boulder/va/utf8filter_test.go
package va import ( "testing" "github.com/letsencrypt/boulder/probs" "github.com/letsencrypt/boulder/test" ) func TestReplaceInvalidUTF8(t *testing.T) { input := "f\xffoo" expected := "f\ufffdoo" result := replaceInvalidUTF8([]byte(input)) if result != expected { t.Errorf("replaceInvalidUTF8(%q): got %q, ex...
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/va/utf8filter.go
third-party/github.com/letsencrypt/boulder/va/utf8filter.go
package va import ( "strings" "unicode/utf8" "github.com/letsencrypt/boulder/probs" ) // replaceInvalidUTF8 replaces all invalid UTF-8 encodings with // Unicode REPLACEMENT CHARACTER. func replaceInvalidUTF8(input []byte) string { if utf8.Valid(input) { return string(input) } var b strings.Builder // Rang...
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/va/tlsalpn_test.go
third-party/github.com/letsencrypt/boulder/va/tlsalpn_test.go
package va import ( "context" "crypto/ecdsa" "crypto/elliptic" "crypto/rand" "crypto/sha256" "crypto/tls" "crypto/x509" "crypto/x509/pkix" "encoding/asn1" "encoding/hex" "fmt" "math/big" "net" "net/http" "net/http/httptest" "net/netip" "net/url" "strings" "testing" "time" "github.com/prometheus/c...
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/va/va.go
third-party/github.com/letsencrypt/boulder/va/va.go
package va import ( "bytes" "context" "crypto/tls" "errors" "fmt" "maps" "math/rand/v2" "net" "net/netip" "net/url" "os" "regexp" "slices" "strings" "syscall" "time" "github.com/jmhodges/clock" "github.com/prometheus/client_golang/prometheus" "google.golang.org/protobuf/proto" "github.com/letsenc...
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/va/dns.go
third-party/github.com/letsencrypt/boulder/va/dns.go
package va import ( "context" "crypto/sha256" "crypto/subtle" "encoding/base64" "fmt" "net/netip" "github.com/letsencrypt/boulder/bdns" "github.com/letsencrypt/boulder/core" berrors "github.com/letsencrypt/boulder/errors" "github.com/letsencrypt/boulder/identifier" ) // getAddr will query for all A/AAAA 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/va/caa_test.go
third-party/github.com/letsencrypt/boulder/va/caa_test.go
package va import ( "context" "encoding/json" "errors" "fmt" "net/netip" "regexp" "slices" "strings" "testing" "github.com/miekg/dns" "github.com/prometheus/client_golang/prometheus" "github.com/letsencrypt/boulder/bdns" "github.com/letsencrypt/boulder/core" berrors "github.com/letsencrypt/boulder/erro...
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/va/http_test.go
third-party/github.com/letsencrypt/boulder/va/http_test.go
package va import ( "bytes" "context" "encoding/base64" "errors" "fmt" mrand "math/rand/v2" "net" "net/http" "net/http/httptest" "net/netip" "net/url" "regexp" "strconv" "strings" "time" "unicode/utf8" "github.com/miekg/dns" "github.com/letsencrypt/boulder/bdns" "github.com/letsencrypt/boulder/cor...
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/va/http.go
third-party/github.com/letsencrypt/boulder/va/http.go
package va import ( "context" "crypto/tls" "errors" "fmt" "io" "net" "net/http" "net/netip" "net/url" "strconv" "strings" "time" "unicode" "github.com/letsencrypt/boulder/bdns" "github.com/letsencrypt/boulder/core" berrors "github.com/letsencrypt/boulder/errors" "github.com/letsencrypt/boulder/iana" ...
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/va/tlsalpn.go
third-party/github.com/letsencrypt/boulder/va/tlsalpn.go
package va import ( "bytes" "context" "crypto/sha256" "crypto/subtle" "crypto/tls" "crypto/x509" "crypto/x509/pkix" "encoding/asn1" "encoding/hex" "errors" "fmt" "net" "net/netip" "strconv" "strings" "github.com/miekg/dns" "github.com/letsencrypt/boulder/core" berrors "github.com/letsencrypt/boulde...
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/va/caa.go
third-party/github.com/letsencrypt/boulder/va/caa.go
package va import ( "context" "errors" "fmt" "net/url" "regexp" "strings" "sync" "time" "github.com/miekg/dns" "google.golang.org/protobuf/proto" "github.com/letsencrypt/boulder/bdns" "github.com/letsencrypt/boulder/core" corepb "github.com/letsencrypt/boulder/core/proto" berrors "github.com/letsencryp...
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/va/proto/va_grpc.pb.go
third-party/github.com/letsencrypt/boulder/va/proto/va_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: va.proto package proto import ( context "context" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" ) // This is a c...
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/va/proto/va.pb.go
third-party/github.com/letsencrypt/boulder/va/proto/va.pb.go
// Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.5 // protoc v3.20.1 // source: va.proto package proto import ( proto "github.com/letsencrypt/boulder/core/proto" protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime...
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/va/config/config.go
third-party/github.com/letsencrypt/boulder/va/config/config.go
package vacfg import ( "fmt" "github.com/letsencrypt/boulder/cmd" "github.com/letsencrypt/boulder/config" ) // Common contains all of the shared fields for a VA and a Remote VA (RVA). type Common struct { cmd.ServiceConfig // UserAgent is the "User-Agent" header sent during http-01 challenges and // DoH querie...
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/probs/probs_test.go
third-party/github.com/letsencrypt/boulder/probs/probs_test.go
package probs import ( "testing" "net/http" "github.com/letsencrypt/boulder/identifier" "github.com/letsencrypt/boulder/test" ) func TestProblemDetails(t *testing.T) { pd := &ProblemDetails{ Type: MalformedProblem, Detail: "Wat? o.O", HTTPStatus: 403, } test.AssertEquals(t, pd.String(), "malf...
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/probs/probs.go
third-party/github.com/letsencrypt/boulder/probs/probs.go
package probs import ( "fmt" "net/http" "github.com/go-jose/go-jose/v4" "github.com/letsencrypt/boulder/identifier" ) const ( // Error types that can be used in ACME payloads. These are sorted in the // same order as they are defined in RFC8555 Section 6.7. We do not implement // the `compound`, `externalAcc...
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/web/server_test.go
third-party/github.com/letsencrypt/boulder/web/server_test.go
package web import ( "context" "errors" "net/http" "sync" "testing" blog "github.com/letsencrypt/boulder/log" "github.com/letsencrypt/boulder/test" ) func TestNewServer(t *testing.T) { srv := NewServer(":0", nil, blog.NewMock()) var wg sync.WaitGroup wg.Add(1) go func() { err := srv.ListenAndServe() ...
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/web/context_test.go
third-party/github.com/letsencrypt/boulder/web/context_test.go
package web import ( "bytes" "context" "crypto/tls" "fmt" "net/http" "net/http/httptest" "strings" "testing" "time" "github.com/letsencrypt/boulder/features" blog "github.com/letsencrypt/boulder/log" "github.com/letsencrypt/boulder/test" ) type myHandler struct{} func (m myHandler) ServeHTTP(e *RequestE...
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/web/jwk.go
third-party/github.com/letsencrypt/boulder/web/jwk.go
package web import ( "encoding/json" "os" "github.com/go-jose/go-jose/v4" ) // LoadJWK loads a JSON encoded JWK specified by filename or returns an error func LoadJWK(filename string) (*jose.JSONWebKey, error) { var jwk jose.JSONWebKey if jsonBytes, err := os.ReadFile(filename); err != nil { return nil, 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/web/docs.go
third-party/github.com/letsencrypt/boulder/web/docs.go
// This package collects types that are common to both wfe and wfe2. package web
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/web/probs_test.go
third-party/github.com/letsencrypt/boulder/web/probs_test.go
package web import ( "fmt" "reflect" "testing" berrors "github.com/letsencrypt/boulder/errors" "github.com/letsencrypt/boulder/identifier" "github.com/letsencrypt/boulder/probs" "github.com/letsencrypt/boulder/test" ) func TestProblemDetailsForError(t *testing.T) { // errMsg is used as the msg argument for `...
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/web/relative.go
third-party/github.com/letsencrypt/boulder/web/relative.go
package web import ( "net/http" "net/url" ) // RelativeEndpoint takes a path component of URL and constructs a new URL using // the host and port from the request combined the provided path. func RelativeEndpoint(request *http.Request, endpoint string) string { var result string proto := "http" host := request.H...
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/web/server.go
third-party/github.com/letsencrypt/boulder/web/server.go
package web import ( "bytes" "fmt" "log" "net/http" "time" blog "github.com/letsencrypt/boulder/log" ) type errorWriter struct { blog.Logger } func (ew errorWriter) Write(p []byte) (n int, err error) { // log.Logger will append a newline to all messages before calling // Write. Our log checksum checker doe...
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/web/context.go
third-party/github.com/letsencrypt/boulder/web/context.go
package web import ( "context" "crypto" "crypto/ecdsa" "crypto/rsa" "encoding/json" "fmt" "net/http" "net/netip" "strings" "time" "github.com/letsencrypt/boulder/features" "github.com/letsencrypt/boulder/identifier" blog "github.com/letsencrypt/boulder/log" ) type userAgentContextKey struct{} func User...
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/web/send_error.go
third-party/github.com/letsencrypt/boulder/web/send_error.go
package web import ( "encoding/json" "fmt" "net/http" "strings" blog "github.com/letsencrypt/boulder/log" "github.com/letsencrypt/boulder/probs" ) // SendError does a few things that we want for each error response: // - Adds both the external and the internal error to a RequestEvent. // - If the ProblemDe...
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/web/probs.go
third-party/github.com/letsencrypt/boulder/web/probs.go
package web import ( "errors" "fmt" berrors "github.com/letsencrypt/boulder/errors" "github.com/letsencrypt/boulder/probs" ) func problemDetailsForBoulderError(err *berrors.BoulderError, msg string) *probs.ProblemDetails { var outProb *probs.ProblemDetails switch err.Type { case berrors.Malformed: outProb ...
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/web/send_error_test.go
third-party/github.com/letsencrypt/boulder/web/send_error_test.go
package web import ( "errors" "net/http/httptest" "testing" berrors "github.com/letsencrypt/boulder/errors" "github.com/letsencrypt/boulder/identifier" "github.com/letsencrypt/boulder/log" "github.com/letsencrypt/boulder/probs" "github.com/letsencrypt/boulder/test" ) func TestSendErrorSubProblemNamespace(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/ra/ra.go
third-party/github.com/letsencrypt/boulder/ra/ra.go
package ra import ( "bytes" "context" "crypto" "crypto/x509" "crypto/x509/pkix" "encoding/asn1" "encoding/json" "errors" "fmt" "net/url" "os" "slices" "strconv" "strings" "sync" "time" "github.com/go-jose/go-jose/v4" "github.com/jmhodges/clock" "github.com/prometheus/client_golang/prometheus" "gol...
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/ra/ra_test.go
third-party/github.com/letsencrypt/boulder/ra/ra_test.go
package ra import ( "bytes" "context" "crypto/ecdsa" "crypto/elliptic" "crypto/rand" "crypto/rsa" "crypto/x509" "crypto/x509/pkix" "encoding/asn1" "encoding/hex" "encoding/json" "encoding/pem" "errors" "fmt" "math" "math/big" mrand "math/rand/v2" "net/netip" "regexp" "strconv" "strings" "sync" "...
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/ra/proto/ra_grpc.pb.go
third-party/github.com/letsencrypt/boulder/ra/proto/ra_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: ra.proto package proto import ( context "context" proto1 "github.com/letsencrypt/boulder/ca/proto" proto "github.com/letsencrypt/boulder/core/proto" grpc "google.golang.org/...
go
MIT
c534a758887878331dda780aeb696b113f37b4ab
2026-01-07T08:35:47.579368Z
true