authenticateX509 method

Future<bool> authenticateX509({
  1. Connection? connection,
})

Method for authentication with X509 certificate. In the conection parameters you have not to set X509 if you want to use this delayed auth function.

Implementation

Future<bool> authenticateX509({Connection? connection}) async =>
    authenticate(null, null,
        connection: connection,
        authScheme: AuthenticationScheme.X509,
        authDb: r'$external');