You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since 11.6, MariaDB has a new authentication method, named parsec authentication, based in PBKDF2 authentication + (standard) ed25519 signature
This will be the default in a few version in the futur (11.9 normally)
Since 11.6, MariaDB has a new authentication method, named parsec authentication, based in PBKDF2 authentication + (standard) ed25519 signature
This will be the default in a few version in the futur (11.9 normally)
Protocol description
documention here
authentication plugin data format :
string<32> server nonce
Client has to respond sending an empty packet to request "ext-salt".
Server respond with ext-salt.
format:
Client response :
The client nonce is 32 random bytes
The signature is generated by :
Example of implementation :
)
additionally, this is one of the authentication method that can be trusted for SSL fingerprint validation
MySqlConnector/src/MySqlConnector/Core/ServerSession.cs
Line 638 in 158dce2
The text was updated successfully, but these errors were encountered: