How do I list all MySQL users with their authentication methods?

SELECT user, host, plugin from mysql.user;

2024-08-02--22-04-58