Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ZipEncryptionEngine.php « Crypto « PhpZip « src « zip « nelexa « vendor - github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3187969878297fbbb6f0e42b68bd62c50a7dcab8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php

namespace PhpZip\Crypto;

use PhpZip\Exception\ZipAuthenticationException;

/**
 * Encryption Engine
 *
 * @see https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT .ZIP File Format Specification
 * @author Ne-Lexa alexey@nelexa.ru
 * @license MIT
 */
interface ZipEncryptionEngine
{
    /**
     * Decryption string.
     *
     * @param string $encryptionContent
     * @return string
     * @throws ZipAuthenticationException
     */
    public function decrypt($encryptionContent);

    /**
     * Encryption string.
     *
     * @param string $content
     * @return string
     */
    public function encrypt($content);
}