blob: 1e64fe7157d7437024ce7e46be91e88b70aeb78d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package certs
import (
"github.com/ydb-platform/ydb/library/go/core/resource"
)
func InternalCAs() []byte {
return resource.Get("/certifi/internal.pem")
}
func CommonCAs() []byte {
return resource.Get("/certifi/common.pem")
}
|