# VerifyBCryptHash

Verifies a BCrypt hash against a plaintext string.

## Method Signature

```
VerifyBCryptHash(string=[string], hashed=[string])
```

### Arguments

| Argument | Type     | Required | Description                                              | Default |
| -------- | -------- | -------- | -------------------------------------------------------- | ------- |
| `string` | `string` | `true`   | The plaintext string to verify against the hashed value. |         |
| `hashed` | `string` | `true`   | The BCrypt hashed value to verify against.               |         |

## Examples

## Related

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