About RSA+AES encryption

Today, I use RSA+AES to transfer encrypted passwords in registration (1 href=: to Github 2)
question:
1 Is there any logical problem with my JS?
2, how should PHP decrypt RSA and AES (even better if there is a library)
3, my
idea:
client (JavaScript):
AES encryption original user password
RSA public key encryption AES key
-data transfer--
server (PHP):
RSA private key decryption to obtain AES secret key
AES decryption to obtain the original user password
and then encrypt the original user password to obtain the encrypted user password stored in the database
?

       $(function () {
        //
        //AES
        var password_form="QAQ";
        console.log(password_form);
        var password = CryptoJS.AES.encrypt(password_form,"Lime Website").toString();
        console.log(password);
        //RSA
        var public_key = $("-sharpinputPublic_key").val();
        console.log(public_key);
        var private_key = $("-sharpinputPrivate_key").val();
        console.log(private_key);
        var encrypt = new JSEncrypt();
        encrypt.setPublicKey(public_key);
        var AES_key = encrypt.encrypt(password);
        console.log(AES_key);
        
        //
        //RSA
        var decrypt = new JSEncrypt();
        decrypt.setPrivateKey(private_key);
        var AES_key_decrypt = decrypt.decrypt(AES_key);
        console.log(AES_key_decrypt);
        //AES
        var bytes = CryptoJS.AES.decrypt(AES_key_decrypt,"Lime Website");
        var password_decrypt = bytes.toString(CryptoJS.enc.Utf8);
        console.log(password_decrypt);
    });

Jun.08,2022

Congratulations on reinventing https

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-7b318c-27cdd.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-7b318c-27cdd.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?