Class SendPamAuthPacket
java.lang.Object
org.mariadb.jdbc.plugin.authentication.standard.SendPamAuthPacket
- All Implemented Interfaces:
AuthenticationPlugin
PAM (dialog) authentication plugin. This is a multi-step exchange password. If more than one
step, passwordX (password2, password3, ...) options must be set.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionSendPamAuthPacket
(String authenticationData, Configuration conf) Initialization. -
Method Summary
Modifier and TypeMethodDescriptionProcess PAM plugin authentication.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.mariadb.jdbc.plugin.AuthenticationPlugin
hash, isMitMProof
-
Field Details
-
authenticationData
-
conf
-
counter
private int counter
-
-
Constructor Details
-
SendPamAuthPacket
Initialization.- Parameters:
authenticationData
- authentication data (password/token)conf
- Connection string options
-
-
Method Details
-
process
public ReadableByteBuf process(Writer out, Reader in, Context context) throws SQLException, IOException Process PAM plugin authentication. see https://mariadb.com/kb/en/library/authentication-plugin-pam/- Specified by:
process
in interfaceAuthenticationPlugin
- Parameters:
out
- out streamin
- in streamcontext
- connection context- Returns:
- response packet
- Throws:
IOException
- if socket errorSQLException
- if plugin exception
-