Skip to content

Commit

Permalink
Fix gofmt issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rharpavat authored and bgavrilMS committed Feb 16, 2024
1 parent 9a3337c commit 728b089
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/tests/devapps/client_certificate_sample.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ func createAppWithCert() *confidential.Client {

// This extracts our public certificates and private key from the PEM file. If it is
// encrypted, the second argument must be password to decode.
// IMPORTANT SECURITY NOTICE: never store passwords in code. The recommended pattern is to keep the certificate in a vault (e.g. Azure KeyVault)
// and to download it when the application starts.
// IMPORTANT SECURITY NOTICE: never store passwords in code. The recommended pattern is to keep the certificate in a vault (e.g. Azure KeyVault)
// and to download it when the application starts.
certs, privateKey, err := confidential.CertFromPEM(pemData, "")
if err != nil {
log.Fatal(err)
Expand Down

0 comments on commit 728b089

Please sign in to comment.