-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathencrypt.php
More file actions
47 lines (39 loc) · 1.24 KB
/
Copy pathencrypt.php
File metadata and controls
47 lines (39 loc) · 1.24 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
declare(strict_types=1);
///////////////////////////////////////////////////////////////////////////////
//
// StringEncrypt WebApi interface usage example.
//
// In this example we will encrypt sample string with default options.
//
// Version : v1.0.1
// Language : PHP
// Author : Bartosz Wójcik
// Project page : https://www.stringencrypt.com
// Web page : https://www.pelock.com
//
///////////////////////////////////////////////////////////////////////////////
use StringEncrypt\ErrorCode;
use StringEncrypt\Language;
use StringEncrypt\NewLine;
use StringEncrypt\StringEncrypt;
$stringEncrypt = new StringEncrypt('YOUR-API-KEY-HERE'); // leave empty for demo mode
$stringEncrypt
->setCompression(false)
->setUnicode(true)
->setLangLocale('en_US.utf8')
->setNewLines(NewLine::Lf)
->setLanguage(Language::Cpp)
->setCmdMin(1)
->setCmdMax(3)
->setLocal(false);
$result = $stringEncrypt->encryptString('Hello!', 'wszLabel');
if ($result === false) {
echo "Cannot connect to the API.\n";
exit(1);
}
if (($result['error'] ?? null) !== ErrorCode::SUCCESS) {
echo 'API error: ' . (string) ($result['error'] ?? 'unknown') . "\n";
exit(1);
}
echo (string) $result['source'] . "\n";