Move RSA keys to their own file

RSA keys are sensitive information that should not be stored in git repositories.
This commit moves them to their own file, adds it to .gitignore and provides a template file.
This commit is contained in:
Cube
2016-03-04 14:55:04 +02:00
parent a02eceb436
commit 0eb8a6e7e6
4 changed files with 22 additions and 14 deletions
-5
View File
@@ -1,9 +1,4 @@
<net>
<rsa>
<modulus>143690958001225849100503496893758066948984921380482659564113596152800934352119496873386875214251264258425208995167316497331786595942754290983849878549630226741961610780416197036711585670124061149988186026407785250364328460839202438651793652051153157765358767514800252431284681765433239888090564804146588087023</modulus>
<private-exponent>124425314960550024206991065332877157931472210939505789558012215720454903710618146200843877022273818555405810618059191162604008259757866640421952188957253368398733319663236323097864278319463888334484786055755767881706264786840339899269810859874287402892848784247637729987603089254067178011764721326471352835473</private-exponent>
</rsa>
<ports>
<http>80</http>
<service>43594</service>
+5
View File
@@ -0,0 +1,5 @@
<rsa>
<!-- Generate keys with RsaKeyGenerator and place them here -->
<modulus></modulus>
<private-exponent></private-exponent>
</rsa>