-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathencrypt_simple.js
More file actions
31 lines (25 loc) · 966 Bytes
/
encrypt_simple.js
File metadata and controls
31 lines (25 loc) · 966 Bytes
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
///////////////////////////////////////////////////////////////////////////////
//
// StringEncrypt WebApi interface usage example.
//
// In this example we will encrypt sample string with default options.
//
// Version : v1.0.0
// Language : JavaScript
// Author : Bartosz Wójcik
// Project page : https://www.stringencrypt.com
// Web page : https://www.pelock.com
//
///////////////////////////////////////////////////////////////////////////////
import { ErrorCode, StringEncrypt } from 'stringencrypt';
const stringEncrypt = new StringEncrypt('YOUR-API-KEY-HERE'); // leave empty for demo mode
const result = await stringEncrypt.encryptString('Hello!', '$label');
if (result === false) {
console.log('Cannot connect to the API.');
process.exit(1);
}
if (result.error !== ErrorCode.SUCCESS) {
console.log(`API error: ${String(result.error ?? 'unknown')}`);
process.exit(1);
}
console.log(String(result.source) + '\n');