securebridge with mydac

securebridge with mydac

ThirdParty demo mydac are SecureBridge(Deprecated) and SecureBridge
With last delphi 12 with patch wich one should be install
deprecated has  MySSHIOHandler and MySSLIOHandler 
In mydac connection handler  properties have no longer available components if securBridge(new one is installed.)
How to connected myconnector now if no mySSiohandler is available.
You have an exemple 

 
                      If    CheckConnectClientSSH(Sender) then
                          Begin

                          Conn.IOHandler := MySSHIOHandler;
                          Conn.Server := Decryptb(reg.readstring('DBHost'));
                          Conn.Username := Decryptb(Reg.ReadString('DBsshUserName'));
                          Conn.Password :=Decryptb(Reg.ReadString('DBsshUserPassword'));
                          Conn.Database :=Decryptb(Reg.ReadString('DBsshDatabase'));
                          Conn.Port :=   Reg.ReadInteger('DBPort');
                  

                          End
                    end;