DefinitelyTyped/types/cryptr/cryptr-tests.ts
2018-12-06 17:48:12 -05:00

11 lines
237 B
TypeScript

import Cryptr = require('cryptr');
// $ExpectType Cryptr
const cryptr = new Cryptr('myTotallySecretKey');
// $ExpectType string
const encrypted_string = cryptr.encrypt('bacon');
// $ExpectType string
cryptr.decrypt(encrypted_string);