Class OldPasswordPlugin
java.lang.Object
org.mariadb.jdbc.internal.com.send.authentication.OldPasswordPlugin
- All Implemented Interfaces:
AuthenticationPlugin
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidinitialize(String authenticationData, byte[] seed, Options options) Plugin initialization.name()Authentication plugin name.process(PacketOutputStream out, PacketInputStream in, AtomicInteger sequence) Process old password plugin authentication.type()Authentication plugin type.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface AuthenticationPlugin
mustUseSsl
-
Field Details
-
TYPE
- See Also:
-
-
Constructor Details
-
OldPasswordPlugin
public OldPasswordPlugin()
-
-
Method Details
-
name
Description copied from interface:AuthenticationPluginAuthentication plugin name.- Specified by:
namein interfaceAuthenticationPlugin- Returns:
- authentication plugin name. ex: Mysql native password
-
type
Description copied from interface:AuthenticationPluginAuthentication plugin type.- Specified by:
typein interfaceAuthenticationPlugin- Returns:
- authentication plugin type. ex: mysql_native_password
-
initialize
Description copied from interface:AuthenticationPluginPlugin initialization.- Specified by:
initializein interfaceAuthenticationPlugin- Parameters:
authenticationData- authentication data (password/token)seed- server provided seedoptions- Connection string options
-
process
public Buffer process(PacketOutputStream out, PacketInputStream in, AtomicInteger sequence) throws IOException Process old password plugin authentication. see https://mariadb.com/kb/en/library/authentication-plugin-mysql_old_password/- Specified by:
processin interfaceAuthenticationPlugin- Parameters:
out- out streamin- in streamsequence- packet sequence- Returns:
- response packet
- Throws:
IOException- if socket error
-