# e2pdf/1.32.49/classes/helper/e2pdf-encryption.php

E2Pdf – Export Pdf Tool for WordPress, version 1.32.49. 22 lines.

- Page: https://pluginprobe.com/plugins/e2pdf/1.32.49/code/classes/helper/e2pdf-encryption.php
- Raw: https://pluginprobe.com/plugins/e2pdf/1.32.49/raw/classes/helper/e2pdf-encryption.php
- Modified: 2026-09-16T08:14:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/e2pdf/1.32.49/code/classes/helper/e2pdf-encryption.php#L10-L20`.

```php
<?php

/**
 * E2pdf Get Encryption
 * 
 * @copyright  Copyright 2017 https://e2pdf.com
 * @license    GPLv3
 * @version    1
 * @link       https://e2pdf.com
 * @since      0.00.01
 */
if (!defined('ABSPATH')) {
    die('Access denied.');
}

class Helper_E2pdf_Encryption {

    public function random_md5() {
        return md5(microtime() . '_' . wp_generate_password());
    }
}

```
