-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1156 from mayocream/master
format json indent
- Loading branch information
Showing
7 changed files
with
174 additions
and
172 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
{ | ||
"hosts": [ | ||
"dropsonde.net" | ||
], | ||
"key": { | ||
"algo": "rsa", | ||
"size": 4096 | ||
}, | ||
"names": [{ | ||
"C": "US", | ||
"L": "San Francisco", | ||
"OU": "Dropsonde Certificate Authority", | ||
"ST": "California" | ||
}] | ||
"hosts": [ | ||
"dropsonde.net" | ||
], | ||
"key": { | ||
"algo": "rsa", | ||
"size": 4096 | ||
}, | ||
"names": [ | ||
{ | ||
"C": "US", | ||
"L": "San Francisco", | ||
"OU": "Dropsonde Certificate Authority", | ||
"ST": "California" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
{ | ||
"signing": { | ||
"default": { | ||
"expiry": "168h" | ||
}, | ||
"profiles": { | ||
"client": { | ||
"expiry": "1h", | ||
"usages": [ | ||
"signing", | ||
"key encipherment", | ||
"client auth" | ||
] | ||
}, | ||
"server": { | ||
"expiry": "1h", | ||
"usages": [ | ||
"signing", | ||
"key encipherment", | ||
"server auth" | ||
] | ||
} | ||
} | ||
"signing": { | ||
"default": { | ||
"expiry": "168h" | ||
}, | ||
"profiles": { | ||
"client": { | ||
"expiry": "1h", | ||
"usages": [ | ||
"signing", | ||
"key encipherment", | ||
"client auth" | ||
] | ||
}, | ||
"server": { | ||
"expiry": "1h", | ||
"usages": [ | ||
"signing", | ||
"key encipherment", | ||
"server auth" | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
{ | ||
"auth_keys": { | ||
"client": { | ||
"type": "standard", | ||
"key": "52abb3ac91971bb72bce17e7a289cd04476490b19e0d8eb7810dc42d4ac16c41" | ||
}, | ||
"server": { | ||
"type": "standard", | ||
"key": "4f4f26686209f672e0ec7b19cbbc8b6d94fdd12cc0b20326f9005d5f234e6e3e" | ||
} | ||
"auth_keys": { | ||
"client": { | ||
"type": "standard", | ||
"key": "52abb3ac91971bb72bce17e7a289cd04476490b19e0d8eb7810dc42d4ac16c41" | ||
}, | ||
"signing": { | ||
"default": { | ||
"expiry": "168h" | ||
}, | ||
"profiles": { | ||
"client": { | ||
"auth_key": "client", | ||
"expiry": "1h", | ||
"usages": [ | ||
"signing", | ||
"key encipherment", | ||
"client auth" | ||
] | ||
}, | ||
"server": { | ||
"auth_key": "server", | ||
"expiry": "8760h", | ||
"usages": [ | ||
"signing", | ||
"key encipherment", | ||
"server auth" | ||
] | ||
} | ||
} | ||
"server": { | ||
"type": "standard", | ||
"key": "4f4f26686209f672e0ec7b19cbbc8b6d94fdd12cc0b20326f9005d5f234e6e3e" | ||
} | ||
}, | ||
"signing": { | ||
"default": { | ||
"expiry": "168h" | ||
}, | ||
"profiles": { | ||
"client": { | ||
"auth_key": "client", | ||
"expiry": "1h", | ||
"usages": [ | ||
"signing", | ||
"key encipherment", | ||
"client auth" | ||
] | ||
}, | ||
"server": { | ||
"auth_key": "server", | ||
"expiry": "8760h", | ||
"usages": [ | ||
"signing", | ||
"key encipherment", | ||
"server auth" | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
{ | ||
"request": { | ||
"CN": "test client", | ||
"hosts": ["127.0.0.1"] | ||
"request": { | ||
"CN": "test client", | ||
"hosts": ["127.0.0.1"] | ||
}, | ||
"profiles": { | ||
"paths": { | ||
"private_key": "client.key", | ||
"certificate": "client.pem" | ||
}, | ||
"profiles": { | ||
"paths": { | ||
"private_key": "client.key", | ||
"certificate": "client.pem" | ||
}, | ||
"cfssl": { | ||
"profile": "client", | ||
"remote": "127.0.0.1:8888" | ||
} | ||
"cfssl": { | ||
"profile": "client", | ||
"remote": "127.0.0.1:8888" | ||
} | ||
}, | ||
"roots": [ | ||
{ | ||
"type": "system" | ||
}, | ||
"roots": [ | ||
{ | ||
"type": "system" | ||
}, | ||
{ | ||
"type": "cfssl", | ||
"metadata": { | ||
"host": "127.0.0.1:8888", | ||
"profile": "server" | ||
} | ||
} | ||
] | ||
{ | ||
"type": "cfssl", | ||
"metadata": { | ||
"host": "127.0.0.1:8888", | ||
"profile": "server" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
{ | ||
"request": { | ||
"CN": "test client", | ||
"hosts": ["127.0.0.1"] | ||
"request": { | ||
"CN": "test client", | ||
"hosts": ["127.0.0.1"] | ||
}, | ||
"profiles": { | ||
"paths": { | ||
"private_key": "client.key", | ||
"certificate": "client.pem" | ||
}, | ||
"profiles": { | ||
"paths": { | ||
"private_key": "client.key", | ||
"certificate": "client.pem" | ||
}, | ||
"cfssl": { | ||
"profile": "client", | ||
"remote": "127.0.0.1:8888", | ||
"auth-type": "standard", | ||
"auth-key": "52abb3ac91971bb72bce17e7a289cd04476490b19e0d8eb7810dc42d4ac16c41" | ||
} | ||
"cfssl": { | ||
"profile": "client", | ||
"remote": "127.0.0.1:8888", | ||
"auth-type": "standard", | ||
"auth-key": "52abb3ac91971bb72bce17e7a289cd04476490b19e0d8eb7810dc42d4ac16c41" | ||
} | ||
}, | ||
"roots": [ | ||
{ | ||
"type": "system" | ||
}, | ||
"roots": [ | ||
{ | ||
"type": "system" | ||
}, | ||
{ | ||
"type": "cfssl", | ||
"metadata": { | ||
"host": "127.0.0.1:8888", | ||
"profile": "server" | ||
} | ||
} | ||
] | ||
{ | ||
"type": "cfssl", | ||
"metadata": { | ||
"host": "127.0.0.1:8888", | ||
"profile": "server" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
{ | ||
"request": { | ||
"CN": "test server", | ||
"hosts": [ | ||
"127.0.0.1" | ||
] | ||
}, | ||
"profiles": { | ||
"paths": { | ||
"private_key": "server.key", | ||
"certificate": "server.pem" | ||
}, | ||
"cfssl": { | ||
"profile": "server", | ||
"remote": "127.0.0.1:8888" | ||
} | ||
}, | ||
"roots": [ | ||
{ | ||
"type": "system" | ||
} | ||
], | ||
"client_roots": [ | ||
{ | ||
"type": "cfssl", | ||
"metadata": { | ||
"host": "127.0.0.1:8888", | ||
"profile": "maclient" | ||
} | ||
} | ||
"request": { | ||
"CN": "test server", | ||
"hosts": [ | ||
"127.0.0.1" | ||
] | ||
}, | ||
"profiles": { | ||
"paths": { | ||
"private_key": "server.key", | ||
"certificate": "server.pem" | ||
}, | ||
"cfssl": { | ||
"profile": "server", | ||
"remote": "127.0.0.1:8888" | ||
} | ||
}, | ||
"roots": [ | ||
{ | ||
"type": "system" | ||
} | ||
], | ||
"client_roots": [ | ||
{ | ||
"type": "cfssl", | ||
"metadata": { | ||
"host": "127.0.0.1:8888", | ||
"profile": "maclient" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
{ | ||
"request": { | ||
"CN": "test server", | ||
"hosts": ["127.0.0.1"] | ||
"request": { | ||
"CN": "test server", | ||
"hosts": ["127.0.0.1"] | ||
}, | ||
"profiles": { | ||
"paths": { | ||
"private_key": "server.key", | ||
"certificate": "server.pem" | ||
}, | ||
"profiles": { | ||
"paths": { | ||
"private_key": "server.key", | ||
"certificate": "server.pem" | ||
}, | ||
"cfssl": { | ||
"profile": "server", | ||
"remote": "127.0.0.1:8888", | ||
"auth-type": "standard", | ||
"auth-key": "4f4f26686209f672e0ec7b19cbbc8b6d94fdd12cc0b20326f9005d5f234e6e3e" | ||
} | ||
}, | ||
"roots": [{ | ||
"type": "system" | ||
}], | ||
"client_roots": [{ | ||
"type": "cfssl", | ||
"metadata": { | ||
"host": "127.0.0.1:8888", | ||
"profile": "client" | ||
} | ||
}] | ||
"cfssl": { | ||
"profile": "server", | ||
"remote": "127.0.0.1:8888", | ||
"auth-type": "standard", | ||
"auth-key": "4f4f26686209f672e0ec7b19cbbc8b6d94fdd12cc0b20326f9005d5f234e6e3e" | ||
} | ||
}, | ||
"roots": [{ | ||
"type": "system" | ||
}], | ||
"client_roots": [{ | ||
"type": "cfssl", | ||
"metadata": { | ||
"host": "127.0.0.1:8888", | ||
"profile": "client" | ||
} | ||
}] | ||
} |