mTLS
mTLS copied to clipboard
golang mTLS example
Results
1
mTLS issues
Sort by
recently updated
recently updated
newest added
I think there is a cut-and-paste error here: ``` caPrivKeyPEM := new(bytes.Buffer) pem.Encode(caPrivKeyPEM, &pem.Block{ Type: "RSA PRIVATE KEY", Bytes: x509.MarshalPKCS1PrivateKey(caKey), }) if err := ioutil.WriteFile(path + "ca.key", caPEM.Bytes(), 0644); err...