The --use-bundled-ca and --use-openssl-ca command line arguments are mutually exclusive but can both be used on the same command line. The behavior depends on the order in which they are used.
// Uses openssl-ca
$ node --use-bundled-ca --use-openssl-ca
// Uses bundled-ca
$ node --use-openssl-ca --use-bundled-ca
Since the options are mutually exclusive, it would likely be better to abort if both are used.
- Version:
- Platform:
- Subsystem:
The
--use-bundled-caand--use-openssl-cacommand line arguments are mutually exclusive but can both be used on the same command line. The behavior depends on the order in which they are used.// Uses openssl-ca
// Uses bundled-ca
Since the options are mutually exclusive, it would likely be better to abort if both are used.