mirror of
https://github.com/corda/corda.git
synced 2024-12-28 16:58:55 +00:00
789ce5d44a
* Initial implementation of the certificate generation tool * Adding trust store persisting * Addressing review comments * Adding certificate type to the certificate generation process. * Addressing review comments * Fixing typos * Changing keyOverride to 0 in examples and tests * Addressing review comments + rebasing * Adding CRL information to the certificate generation process * Generation tool refactoring * Addressing review comments
31 lines
728 B
Plaintext
31 lines
728 B
Plaintext
hsmHost = 127.0.0.1
|
|
hsmPort = 3001
|
|
trustStoreDirectory = "."
|
|
trustStorePassword = "trustpass"
|
|
|
|
certConfig {
|
|
subject = "CN=Corda Root, O=R3Cev, L=London, C=GB"
|
|
certificateType = ROOT_CA
|
|
privateKeyPassword = "PASSWORD"
|
|
rootPrivateKeyPassword = "PASSWORD"
|
|
validDays = 3650
|
|
keyOverride = 0
|
|
keyAlgorithm = 4
|
|
keyExport = 0
|
|
keyCurve = "NIST-P256"
|
|
keyGenMechanism = 4
|
|
keyGroup = "DEV.DOORMAN"
|
|
keySpecifier = 1
|
|
storeKeysExternal = false
|
|
crlDistributionUrl = "http://r3.com/revoked.crl"
|
|
crlIssuer = "CN=Corda Test, O=R3Cev, L=London, C=GB"
|
|
}
|
|
|
|
userConfigs = [
|
|
{
|
|
username = "INTEGRATION_TEST"
|
|
authMode = PASSWORD
|
|
authToken = "INTEGRATION_TEST"
|
|
}
|
|
]
|