1

In a software library, I wrote, large parts of the code use x509 certificates for various purposes like signing documents digitally.

Is there a best practice for storing test certificates used for the unit tests? Should they be stored in git/the same versioning system where the code is?

Bahaa
  • 137

1 Answers1

4

Certificates are small. And there is no problem with security if they are only used for testing.

So I see no problem storing them in source control.

Euphoric
  • 38,149