├── .github └── workflows │ └── go.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── real-aliyun.png └── self-signed-aliyun.png ├── go.mod └── main.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virusdefender/copy-cert/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.crt 2 | *.key 3 | .idea/ 4 | certs/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virusdefender/copy-cert/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virusdefender/copy-cert/HEAD/README.md -------------------------------------------------------------------------------- /assets/real-aliyun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virusdefender/copy-cert/HEAD/assets/real-aliyun.png -------------------------------------------------------------------------------- /assets/self-signed-aliyun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virusdefender/copy-cert/HEAD/assets/self-signed-aliyun.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/virusdefender/copy-cert 2 | 3 | go 1.21 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virusdefender/copy-cert/HEAD/main.go --------------------------------------------------------------------------------