i managed to encrypt a password in wampserver but i also want to implement the same code in the login frame code so it can also encrypt what i have type so it became easy to be compared with the encryption in database, how to i embedd the code in java
This is the code generated by WAMP after applying the encryption:
INSERT INTO `pms`.`login` (
`Username` ,
`Password`
)
VALUES (
MD5( 'me' ) , ''
);