aboutsummaryrefslogtreecommitdiffstats
path: root/tests/nosec_anon
Commit message (Collapse)AuthorAgeFilesLines
* Rename ClientFindServers certificate identity to ClientThomas Vanbesien2 days1-3/+3
| | | | | | The unified client program is no longer just for FindServers. Regenerated the certificate as "Client" and updated all configs, trust store symlinks, readme, and script comments.
* Standardize config file section ordering, list operations in usageThomas Vanbesien2 days4-6/+10
| | | | | | | Group config keys into sections separated by blank lines: identity, encryption (certificate/privateKey/trustStore), security mode, auth. Program-specific keys (cleanupTimeout, registerInterval) go last. Show available operations in Client usage message.
* Remove none_anon test, make nosec_anon fully unsecuredThomas Vanbesien3 days1-4/+0
| | | | | | none_anon was redundant — nosec_anon now covers the unsecured case with both LDS and ServerRegister running without security config. Update readme test table to reflect the change.
* Make LDS security config optional, add nosec_anon testThomas Vanbesien3 days4-0/+42
ServerLDS and ServerRegister can now run without encryption when certificate, privateKey, and trustStore are all omitted from the server config file. When any of the three is present, all three are still required. The unsecured server uses UA_ServerConfig_setMinimal with SecurityPolicy#None only. Add nosec_anon integration test covering the LDS unsecured path. Update readme: use symlinks instead of copies for trust stores, note that ServerLDS and ServerRegister support running without certs.