# ArgonVerify

Performs a Argon2 verification on the given string against the hashed value.

## Method Signature

```
ArgonVerify(input=[string], hashed=[string], variant=[string])
```

### Arguments

| Argument  | Type     | Required | Description                                                                                             | Default |
| --------- | -------- | -------- | ------------------------------------------------------------------------------------------------------- | ------- |
| `input`   | `string` | `true`   | The string to verify against the hash.                                                                  |         |
| `hashed`  | `string` | `true`   | The hashed value to verify against.                                                                     |         |
| `variant` | `string` | `false`  | The variant of Argon2 to use. If not provided the hashed value will be tested to determine the variant. |         |

## Examples

## Related

* [Argon2CheckHash](/boxlang-framework/modularity/password-encryption/reference/built-in-functions/encrypt/argon2checkhash.md)
* [ArgonHash](/boxlang-framework/modularity/password-encryption/reference/built-in-functions/encrypt/argonhash.md)
* [BCryptHash](/boxlang-framework/modularity/password-encryption/reference/built-in-functions/encrypt/bcrypthash.md)
* [BCryptVerify](/boxlang-framework/modularity/password-encryption/reference/built-in-functions/encrypt/bcryptverify.md)
* [GenerateArgon2Hash](/boxlang-framework/modularity/password-encryption/reference/built-in-functions/encrypt/generateargon2hash.md)
* [GenerateBCryptHash](/boxlang-framework/modularity/password-encryption/reference/built-in-functions/encrypt/generatebcrypthash.md)
* [GenerateSCryptHash](/boxlang-framework/modularity/password-encryption/reference/built-in-functions/encrypt/generatescrypthash.md)
* [SCryptHash](/boxlang-framework/modularity/password-encryption/reference/built-in-functions/encrypt/scrypthash.md)
* [SCryptVerify](/boxlang-framework/modularity/password-encryption/reference/built-in-functions/encrypt/scryptverify.md)
* [VerifyBCryptHash](/boxlang-framework/modularity/password-encryption/reference/built-in-functions/encrypt/verifybcrypthash.md)
* [VerifySCryptHash](/boxlang-framework/modularity/password-encryption/reference/built-in-functions/encrypt/verifyscrypthash.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://boxlang.ortusbooks.com/boxlang-framework/modularity/password-encryption/reference/built-in-functions/encrypt/argonverify.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
