Encryption in table oc_users

Hello, I am stuck at finding an algorithm of encryption method for Password user in nextcloud which I found in DB.
The password is encrypt by === 2|$argon2i$v=19$m=65536,t=4,p=1$Y2RvT0w3d0FLTlhVUGV3aQ$CSFgP9bE4nktemjd/eF+WtC0RxtckFc87bf2wUbucX4
In table oc_users. Here the image from that table

.

If all of you know the encryption method, please share the method or the way I check the method.
Thanks

It’s not encrypted, it is hashed: https://en.wikipedia.org/wiki/Argon2
here is the implementation in Nextcloud: https://github.com/nextcloud/server/blob/a71957f2b93d5bdc03dfeda82b3f234850cc9823/lib/private/Security/Hasher.php