# Email list hash generator

**Use case:** 

Generate MD5, SHA-1, SHA-256, and SHA-512 hashes for email strings to support matching and deduplication workflows.

## Input

```json
{
  "strings": [
    "alice@example.com",
    "bob@example.com",
    "carol@example.org"
  ]
}
```

## Output

```json
{
  "input": {
    "label": "Input"
  },
  "md5": {
    "label": "MD5"
  },
  "sha1": {
    "label": "SHA-1"
  },
  "sha256": {
    "label": "SHA-256"
  }
}
```

## About this Actor

This example demonstrates how to use [Hash Generator](https://apify.com/automation-lab/hash-generator) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/hash-generator) to learn more, explore other use cases, and run it yourself.