Add definitions for triplesec

This commit is contained in:
threesquared 2018-06-27 15:54:29 +01:00
parent 8c2749435d
commit f6962ca7ea
4 changed files with 81 additions and 0 deletions

31
types/triplesec/index.d.ts vendored Normal file
View File

@ -0,0 +1,31 @@
// Type definitions for triplesec 3.0
// Project: https://github.com/keybase/triplesec
// Definitions by: Ben Speakman <https://github.com/threesquared>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
export interface WordArray {
sigBytes: number;
words: number[];
to_hex: () => string;
}
export interface Arguments {
data: Buffer,
key: Buffer,
progress_hook?: (progress: Progress) => void;
}
export interface Progress {
what: string;
i: number;
total: number;
}
export function encrypt(arg: Arguments, cb: (err: Error | null, buff: Buffer | null) => void): void;
export function decrypt(arg: Arguments, cb: (err: Error | null, buff: Buffer | null) => void): void;
export namespace prng {
export function generate(n: number, cb: (words: WordArray) => void): void;
}

View File

@ -0,0 +1,27 @@
import * as triplesec from 'triplesec';
triplesec.encrypt({
data: new Buffer('data'),
key: new Buffer('key')
}, (err, buff) => {
if (err === null) {
console.log(buff);
} else {
console.log(err);
}
});
triplesec.decrypt({
data: new Buffer('data'),
key: new Buffer('key')
}, (err, buff) => {
if (err === null) {
console.log(buff);
} else {
console.log(err);
}
});
triplesec.prng.generate(24, words => {
console.log(words.to_hex()); // $ExpectType string
});

View File

@ -0,0 +1,22 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"triplesec-tests.ts"
]
}

View File

@ -0,0 +1 @@
{ "extends": "dtslint/dt.json" }