forked from snowflakedb/gosnowflake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ocsp.go
601 lines (558 loc) · 18.4 KB
/
ocsp.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
// Copyright (c) 2017-2018 Snowflake Computing Inc. All right reserved.
package gosnowflake
import (
"context"
"crypto"
"crypto/tls"
"crypto/x509"
"crypto/x509/pkix"
"encoding/asn1"
"encoding/base64"
"encoding/json"
"encoding/pem"
"fmt"
"io/ioutil"
"math/big"
"net/http"
"net/url"
"os"
"path/filepath"
"runtime"
"sync"
"time"
"golang.org/x/crypto/ocsp"
)
// caRoot includes the CA certificates.
var caRoot map[string]*x509.Certificate
// certPOol includes the CA certificates.
var certPool *x509.CertPool
// cacheDir is the location of OCSP response cache file
var cacheDir = ""
// cacheFileName is the file name of OCSP response cache file
var cacheFileName = ""
const (
// retryOCSPTimeout is the total timeout for OCSP checks.
retryOCSPTimeout = 120 * time.Second
retryOCSPHTTPTimeout = 30 * time.Second
)
const (
cacheFileBaseName = "ocsp_response_cache"
// cacheExpire specifies cache data expiration time in seconds.
cacheExpire = float64(24 * 60 * 60)
)
const (
tolerableValidityRatio = 100 // buffer for certificate revocation update time
maxClockSkew = 900 * time.Second // buffer for clock skew
)
type ocspStatusCode int
type ocspStatus struct {
code ocspStatusCode
err error
}
const (
ocspSuccess ocspStatusCode = 0
ocspNoServer ocspStatusCode = -1
ocspFailedParseOCSPHost ocspStatusCode = -2
ocspFailedComposeRequest ocspStatusCode = -3
ocspFailedDecomposeRequst ocspStatusCode = -4
ocspFailedEncodeCertID ocspStatusCode = -5
ocspFailedSubmit ocspStatusCode = -6
ocspFailedResponse ocspStatusCode = -7
ocspFailedExtractResponse ocspStatusCode = -8
ocspFailedParseResponse ocspStatusCode = -9
ocspInvalidValidity ocspStatusCode = -10
ocspRevokedOrUnknown ocspStatusCode = -11
ocspMissedCache ocspStatusCode = -12
ocspCacheExpired ocspStatusCode = -13
ocspFailedDecodeResponse ocspStatusCode = -14
)
var (
ocspResponseCache map[string][]interface{}
ocspResponseCacheLock *sync.RWMutex
)
// copied from crypto/ocsp
var hashOIDs = map[crypto.Hash]asn1.ObjectIdentifier{
crypto.SHA1: asn1.ObjectIdentifier([]int{1, 3, 14, 3, 2, 26}),
crypto.SHA256: asn1.ObjectIdentifier([]int{2, 16, 840, 1, 101, 3, 4, 2, 1}),
crypto.SHA384: asn1.ObjectIdentifier([]int{2, 16, 840, 1, 101, 3, 4, 2, 2}),
crypto.SHA512: asn1.ObjectIdentifier([]int{2, 16, 840, 1, 101, 3, 4, 2, 3}),
}
// copied from crypto/ocsp.go
type certID struct {
HashAlgorithm pkix.AlgorithmIdentifier
NameHash []byte
IssuerKeyHash []byte
SerialNumber *big.Int
}
// copied from crypto/ocsp.go
func getOIDFromHashAlgorithm(target crypto.Hash) asn1.ObjectIdentifier {
for hash, oid := range hashOIDs {
if hash == target {
return oid
}
}
glog.V(0).Infof("no valid OID is found for the hash algorithm. %#v", target)
return nil
}
// calcTolerableValidity returns the maximum validity buffer
func calcTolerableValidity(thisUpdate, nextUpdate time.Time) time.Duration {
return durationMax(time.Duration(nextUpdate.Sub(thisUpdate)/tolerableValidityRatio), maxClockSkew)
}
// isInValidityRange checks the validity
func isInValidityRange(currTime, thisUpdate, nextUpdate time.Time) bool {
if currTime.Sub(thisUpdate.Add(-maxClockSkew)) < 0 {
return false
}
if nextUpdate.Add(calcTolerableValidity(thisUpdate, nextUpdate)).Sub(currTime) < 0 {
return false
}
return true
}
func retryRevocationStatusCheck(totalTimeout *time.Duration, sleepTime time.Duration) (ok bool) {
if *totalTimeout > 0 {
*totalTimeout -= sleepTime
}
if *totalTimeout <= 0 {
return false
}
glog.V(2).Infof("sleeping %v for retryOCSP. to timeout: %v. retrying", sleepTime, *totalTimeout)
time.Sleep(sleepTime)
return true
}
func encodeCertID(ocspReq []byte) ([]byte, *ocspStatus) {
r, err := ocsp.ParseRequest(ocspReq)
if err != nil {
return nil, &ocspStatus{
code: ocspFailedDecomposeRequst,
err: err,
}
}
// encode CertID, used as a key in the cache
hashAlg := getOIDFromHashAlgorithm(r.HashAlgorithm)
encodedCertID, err := asn1.Marshal(certID{
pkix.AlgorithmIdentifier{
Algorithm: hashAlg,
Parameters: asn1.RawValue{Tag: 5 /* ASN.1 NULL */},
},
r.IssuerNameHash,
r.IssuerKeyHash,
r.SerialNumber,
})
if err != nil {
return nil, &ocspStatus{
code: ocspFailedEncodeCertID,
err: err,
}
}
return encodedCertID, &ocspStatus{
code: ocspSuccess,
}
}
func checkOCSPResponseCache(encodedCertID []byte, subject, issuer *x509.Certificate) *ocspStatus {
encodedCertIDBase64 := base64.StdEncoding.EncodeToString(encodedCertID)
ocspResponseCacheLock.Lock()
gotValueFromCache := ocspResponseCache[encodedCertIDBase64]
ocspResponseCacheLock.Unlock()
if len(gotValueFromCache) != 2 {
return &ocspStatus{
code: ocspMissedCache,
err: fmt.Errorf("miss cache data. CertID: %v", encodedCertIDBase64),
}
}
glog.V(2).Infof("hit cache: %v, time: %v, value: %v", encodedCertIDBase64, gotValueFromCache[0], gotValueFromCache[1])
currentTime := float64(time.Now().UTC().Unix())
if epoch, ok := gotValueFromCache[0].(float64); ok {
if currentTime-epoch >= cacheExpire {
ocspResponseCacheLock.Lock()
delete(ocspResponseCache, encodedCertIDBase64)
ocspResponseCacheLock.Unlock()
return &ocspStatus{
code: ocspCacheExpired,
err: fmt.Errorf("cache expired. current: %v, cache: %v, CertID: %v",
time.Unix(int64(currentTime), 0).UTC(), time.Unix(int64(epoch), 0).UTC(), encodedCertIDBase64),
}
}
if s, ok := gotValueFromCache[1].(string); ok {
b, err := base64.StdEncoding.DecodeString(s)
if err != nil {
ocspResponseCacheLock.Lock()
delete(ocspResponseCache, encodedCertIDBase64)
ocspResponseCacheLock.Unlock()
return &ocspStatus{
code: ocspFailedDecodeResponse,
err: fmt.Errorf("failed to decode OCSP Response value in a cache. CertID: %v", encodedCertIDBase64),
}
}
ocspRes, err := ocsp.ParseResponse(b, issuer)
if err != nil {
ocspResponseCacheLock.Lock()
delete(ocspResponseCache, encodedCertIDBase64)
ocspResponseCacheLock.Unlock()
return &ocspStatus{
code: ocspFailedParseResponse,
err: fmt.Errorf("failed to parse OCSP Respose. CertID: %v", encodedCertIDBase64),
}
}
glog.V(2).Info("using cached OCSP Response")
return validateOCSP(encodedCertIDBase64, ocspRes, subject)
}
}
ocspResponseCacheLock.Lock()
delete(ocspResponseCache, encodedCertIDBase64) // delete invalid cache entry
ocspResponseCacheLock.Unlock()
return &ocspStatus{
code: ocspMissedCache,
err: fmt.Errorf("missed cache. CertID: %v", encodedCertIDBase64),
}
}
func validateOCSP(encodedCertIDBase64 string, ocspRes *ocsp.Response, subject *x509.Certificate) *ocspStatus {
ocspResponseCacheLock.Lock()
defer ocspResponseCacheLock.Unlock()
curTime := time.Now()
if !isInValidityRange(curTime, ocspRes.ThisUpdate, ocspRes.NextUpdate) {
delete(ocspResponseCache, encodedCertIDBase64)
return &ocspStatus{
code: ocspInvalidValidity,
err: fmt.Errorf("invalid validity: producedAt: %v, thisUpdate: %v, nextUpdate: %v", ocspRes.ProducedAt, ocspRes.ThisUpdate, ocspRes.NextUpdate),
}
}
if ocspRes.Status != ocsp.Good {
delete(ocspResponseCache, encodedCertIDBase64)
return &ocspStatus{
code: ocspRevokedOrUnknown,
err: fmt.Errorf("bad revocation status. %v: %v, cert: %v", ocspRes.Status, ocspRes.RevocationReason, subject.Subject),
}
}
return &ocspStatus{
code: ocspSuccess,
err: nil,
}
}
// retryOCSP is the second level of retry method if the returned contents are corrupted. It often happens with OCSP
// serer and retry helps.
func retryOCSP(
client clientInterface,
req requestFunc,
ocspHost string,
headers map[string]string,
reqBody []byte,
issuer *x509.Certificate,
totalTimeout time.Duration,
httpTimeout time.Duration) (
ocspRes *ocsp.Response,
ocspResBytes []byte,
ocspS *ocspStatus) {
retryCounter := 0
sleepTime := time.Duration(0)
for {
sleepTime = defaultWaitAlgo.decorr(retryCounter, sleepTime)
res, err := retryHTTP(context.TODO(), client, req, "POST", ocspHost, headers, reqBody, httpTimeout, false)
if err != nil {
if ok := retryRevocationStatusCheck(&totalTimeout, sleepTime); ok {
retryCounter++
continue
}
return ocspRes, ocspResBytes, &ocspStatus{
code: ocspFailedSubmit,
err: err,
}
}
defer res.Body.Close()
glog.V(2).Infof("StatusCode from OCSP Server: %v\n", res.StatusCode)
if res.StatusCode != http.StatusOK {
if ok := retryRevocationStatusCheck(&totalTimeout, sleepTime); ok {
retryCounter++
continue
}
return ocspRes, ocspResBytes, &ocspStatus{
code: ocspFailedResponse,
err: fmt.Errorf("HTTP code is not OK. %v: %v", res.StatusCode, res.Status),
}
}
glog.V(2).Info("reading contents")
ocspResBytes, err = ioutil.ReadAll(res.Body)
if err != nil {
if ok := retryRevocationStatusCheck(&totalTimeout, sleepTime); ok {
retryCounter++
continue
}
return ocspRes, ocspResBytes, &ocspStatus{
code: ocspFailedExtractResponse,
err: err,
}
}
glog.V(2).Info("parsing OCSP response")
ocspRes, err = ocsp.ParseResponse(ocspResBytes, issuer)
if err != nil {
if ok := retryRevocationStatusCheck(&totalTimeout, sleepTime); ok {
retryCounter++
continue
}
return ocspRes, ocspResBytes, &ocspStatus{
code: ocspFailedParseResponse,
err: err,
}
}
break
}
return ocspRes, ocspResBytes, &ocspStatus{
code: ocspSuccess,
err: nil,
}
}
// getRevocationStatus checks the certificate revocation status for subject using issuer certificate.
func getRevocationStatus(wg *sync.WaitGroup, ocspStatusChan chan<- *ocspStatus, subject, issuer *x509.Certificate) {
defer wg.Done()
glog.V(2).Infof("Subject: %v\n", subject.Subject)
glog.V(2).Infof("Issuer: %v\n", issuer.Subject)
glog.V(2).Infof("OCSP Server: %v\n", subject.OCSPServer)
if len(subject.OCSPServer) == 0 {
ocspStatusChan <- &ocspStatus{
code: ocspNoServer,
err: fmt.Errorf("no OCSP server is attached to the certificate. %v", subject.Subject),
}
return
}
ocspHost := subject.OCSPServer[0]
u, err := url.Parse(ocspHost)
if err != nil {
ocspStatusChan <- &ocspStatus{
code: ocspFailedParseOCSPHost,
err: fmt.Errorf("failed to parse OCSP server host. %v", ocspHost),
}
return
}
ocspReq, err := ocsp.CreateRequest(subject, issuer, &ocsp.RequestOptions{})
if err != nil {
ocspStatusChan <- &ocspStatus{
code: ocspFailedComposeRequest,
err: fmt.Errorf("failed to compose OCSP request object. %v", subject.Subject),
}
return
}
encodedCertID, ocspS := encodeCertID(ocspReq)
if ocspS.code != ocspSuccess {
ocspStatusChan <- ocspS
return
}
ocspValidatedWithCache := checkOCSPResponseCache(encodedCertID, subject, issuer)
if ocspValidatedWithCache.code == ocspSuccess {
ocspStatusChan <- ocspValidatedWithCache
return
}
glog.V(2).Infof("cache missed: %v\n", ocspValidatedWithCache.err)
st := snowflakeInsecureTransport
ocspClient := &http.Client{
Timeout: 30 * time.Second,
Transport: st,
}
headers := make(map[string]string)
headers["Content-Type"] = "application/ocsp-request"
headers["Accept"] = "application/ocsp-response"
headers["Content-Length"] = string(len(ocspReq))
headers["Host"] = u.Hostname()
ocspRes, ocspResBytes, ocspS := retryOCSP(ocspClient, http.NewRequest, ocspHost, headers, ocspReq, issuer, retryOCSPTimeout, retryOCSPHTTPTimeout)
if ocspS.code != ocspSuccess {
ocspStatusChan <- ocspS
return
}
encodedCertIDBase64 := base64.StdEncoding.EncodeToString(encodedCertID)
ocspStatusChan <- validateOCSP(encodedCertIDBase64, ocspRes, subject)
v := []interface{}{float64(time.Now().UTC().Unix()), base64.StdEncoding.EncodeToString(ocspResBytes)}
ocspResponseCacheLock.Lock()
ocspResponseCache[encodedCertIDBase64] = v
ocspResponseCacheLock.Unlock()
}
// verifyPeerCertificate verifies all of certificate revocation status
func verifyPeerCertificate(callback func(*sync.WaitGroup, []*x509.Certificate) []*ocspStatus, verifiedChains [][]*x509.Certificate) (err error) {
for i := 0; i < len(verifiedChains); i++ {
var wg sync.WaitGroup
n := len(verifiedChains[i]) - 1
if !verifiedChains[i][n].IsCA || string(verifiedChains[i][n].RawIssuer) != string(verifiedChains[i][n].RawSubject) {
// if the last certificate is not root CA, add it to the list
rca := caRoot[string(verifiedChains[i][n].RawIssuer)]
if rca == nil {
return fmt.Errorf("failed to find root CA. pkix.name: %v", verifiedChains[i][n].Issuer)
}
verifiedChains[i] = append(verifiedChains[i], rca)
n++
}
wg.Add(n)
results := callback(&wg, verifiedChains[i])
wg.Wait()
for _, r := range results {
if r.err != nil {
return r.err
}
}
}
writeOCSPCacheFile()
return nil
}
func getAllRevocationStatusParallel(wg *sync.WaitGroup, verifiedChains []*x509.Certificate) []*ocspStatus {
n := len(verifiedChains) - 1
ocspStatusChan := make(chan *ocspStatus, n)
for j := 0; j < n; j++ {
go getRevocationStatus(wg, ocspStatusChan, verifiedChains[j], verifiedChains[j+1])
}
results := make([]*ocspStatus, n)
for j := 0; j < n; j++ {
results[j] = <-ocspStatusChan // will wait for all results back
}
close(ocspStatusChan)
return results
}
func getAllRevocationStatusSerial(wg *sync.WaitGroup, verifiedChains []*x509.Certificate) []*ocspStatus {
n := len(verifiedChains) - 1
results := make([]*ocspStatus, n)
for j := 0; j < n; j++ {
ocspStatusChan := make(chan *ocspStatus, 1)
getRevocationStatus(wg, ocspStatusChan, verifiedChains[j], verifiedChains[j+1])
results[j] = <-ocspStatusChan
close(ocspStatusChan)
}
return results
}
// verifyPeerCertificateSerial verifies the certificate revocation status in serial.
// This is mainly used by tools that analyzes the OCSP output
func verifyPeerCertificateSerial(_ [][]byte, verifiedChains [][]*x509.Certificate) (err error) {
return verifyPeerCertificate(getAllRevocationStatusSerial, verifiedChains)
}
// verifyPeerCertificateParallel verifies the certificate revocation status in parallel.
// This is mainly used for general connection
func verifyPeerCertificateParallel(_ [][]byte, verifiedChains [][]*x509.Certificate) (err error) {
return verifyPeerCertificate(getAllRevocationStatusParallel, verifiedChains)
}
// readOCSPCacheFile reads a OCSP Response cache file. This should be called in init().
func readOCSPCacheFile() {
ocspResponseCache = make(map[string][]interface{})
ocspResponseCacheLock = &sync.RWMutex{}
cacheFileName = filepath.Join(cacheDir, cacheFileBaseName)
glog.V(2).Infof("reading OCSP Response cache file. %v\n", cacheFileName)
raw, err := ioutil.ReadFile(cacheFileName)
if err != nil {
glog.V(2).Infof("failed to read OCSP cache file. %v. ignored.\n", err)
}
err = json.Unmarshal(raw, &ocspResponseCache)
if err != nil {
glog.V(2).Infof("failed to read OCSP cache file. %v. ignored\n", err)
}
}
// writeOCSPCacheFile writes a OCSP Response cache file. This is called if all revocation status is success.
// lock file is used to mitigate race condition with other process.
func writeOCSPCacheFile() {
glog.V(2).Infof("writing OCSP Response cache file. %v\n", cacheFileName)
cacheLockFileName := cacheFileName + ".lck"
statinfo, err := os.Stat(cacheLockFileName)
switch {
case os.IsNotExist(err):
os.OpenFile(cacheLockFileName, os.O_RDONLY|os.O_CREATE, 0644)
case err != nil:
glog.V(2).Infof("failed to write OCSP response cache file. file: %v, err: %v. ignored.\n", cacheFileName, err)
return
default:
if time.Since(statinfo.ModTime()) < time.Hour {
glog.V(2).Infof("other process locks the cache file. %v. ignored.\n", cacheFileName)
return
}
err := os.Remove(cacheLockFileName)
if err != nil {
glog.V(2).Infof("failed to delete lock file. file: %v, err: %v. ignored.\n", cacheLockFileName, err)
return
}
os.OpenFile(cacheLockFileName, os.O_RDONLY|os.O_CREATE, 0644)
}
defer os.Remove(cacheLockFileName)
ocspResponseCacheLock.Lock()
defer ocspResponseCacheLock.Unlock()
j, err := json.Marshal(ocspResponseCache)
if err != nil {
glog.V(2).Info("failed to convert OCSP Response cache to JSON. ignored.")
return
}
err = ioutil.WriteFile(cacheFileName, j, 0644)
if err != nil {
glog.V(2).Infof("failed to write OCSP Response cache. err: %v. ignored.\n", err)
}
}
// readCACerts read a set of root CAs
func readCACerts() {
raw := []byte(caRootPEM)
certPool = x509.NewCertPool()
caRoot = make(map[string]*x509.Certificate)
var p *pem.Block
for {
p, raw = pem.Decode(raw)
if p == nil {
break
}
if p.Type != "CERTIFICATE" {
continue
}
c, err := x509.ParseCertificate(p.Bytes)
if err != nil {
panic("failed to parse CA certificate.")
}
certPool.AddCert(c)
caRoot[string(c.RawSubject)] = c
}
}
// createOCSPCacheDir creates OCSP response cache directory. If SNOWFLAKE_TEST_WORKSPACE is set,
func createOCSPCacheDir() {
cacheDir = os.Getenv("SNOWFLAKE_TEST_WORKSPACE")
if cacheDir == "" {
switch runtime.GOOS {
case "windows":
cacheDir = filepath.Join(os.Getenv("USERPROFILE"), "AppData", "Local", "Snowflake", "Caches")
case "darwin":
home := os.Getenv("HOME")
if home == "" {
glog.V(2).Info("HOME is blank.")
}
cacheDir = filepath.Join(home, "Library", "Caches", "Snowflake")
default:
home := os.Getenv("HOME")
if home == "" {
glog.V(2).Info("HOME is blank")
}
cacheDir = filepath.Join(home, ".cache", "snowflake")
}
}
if _, err := os.Stat(cacheDir); os.IsNotExist(err) {
err := os.MkdirAll(cacheDir, os.ModePerm)
if err != nil {
glog.V(2).Infof("failed to create cache directory. %v, err: %v. ignored\n", cacheDir, err)
}
}
}
func init() {
readCACerts()
createOCSPCacheDir()
readOCSPCacheFile()
}
// snowflakeInsecureTransport is the default tranport object that doesn't do certificate revocation check.
var snowflakeInsecureTransport = &http.Transport{
MaxIdleConns: 10,
IdleConnTimeout: 30 * time.Minute,
}
// SnowflakeTransport includes the certificate revocation check with OCSP in parallel. By default, the driver uses
// this transport object.
var SnowflakeTransport = &http.Transport{
TLSClientConfig: &tls.Config{
RootCAs: certPool,
VerifyPeerCertificate: verifyPeerCertificateParallel,
},
MaxIdleConns: 10,
IdleConnTimeout: 30 * time.Minute,
}
// SnowflakeTransportSerial includes the certificate revocation check with OCSP in serial.
var SnowflakeTransportSerial = &http.Transport{
TLSClientConfig: &tls.Config{
RootCAs: certPool,
VerifyPeerCertificate: verifyPeerCertificateSerial,
},
MaxIdleConns: 10,
IdleConnTimeout: 30 * time.Minute,
}
// SnowflakeTransportTest includes the certificate revocation check in parallel
var SnowflakeTransportTest = SnowflakeTransport