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
I was trying to implement cache_sha2_password. Since cache_sha2_password need several communication back and fore, it is not possible to do it with current buildAuth.
I think it is better for us to have ability to pass connection and use nextPacket. But since nextPacket is private, it is not possible to use it inside the handleHandshake.
I was trying to implement
cache_sha2_password
. Sincecache_sha2_password
need several communication back and fore, it is not possible to do it with currentbuildAuth
.I think it is better for us to have ability to pass connection and use
nextPacket
. But sincenextPacket
is private, it is not possible to use it inside thehandleHandshake
.Another way we wrap the raw connection with another helper class. Then we just pass helper class to other function.
Then in the
Connection
classThe text was updated successfully, but these errors were encountered: