From deaabd1464784a6fddbfa9e1ac6cb0e1148a8c34 Mon Sep 17 00:00:00 2001 From: Thomas Vanbesien Date: Wed, 18 Feb 2026 21:44:17 +0100 Subject: Add X509 certificate identity token authentication Support authMode=cert alongside anonymous and user. The client reuses its application certificate as the X509 identity token (open62541 requires both to match). Server-side access control advertises the certificate token policy automatically when sessionPKI is configured. --- src/server_lds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/server_lds.c') diff --git a/src/server_lds.c b/src/server_lds.c index 99c1e8c..3307073 100644 --- a/src/server_lds.c +++ b/src/server_lds.c @@ -99,7 +99,7 @@ main (int argc, char *argv[]) UA_Boolean allowAnonymous; const char *username = NULL, *password = NULL; if (parseAuthConfig (&cfg, "ServerLDS", &allowAnonymous, &username, - &password) + &password, NULL) != 0) { configFree (&cfg); -- cgit v1.2.3