3.0.3 • Published 6 months ago

@types/triplesec v3.0.3

Weekly downloads
593
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/triplesec

Summary

This package contains type definitions for triplesec (https://github.com/keybase/triplesec).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/triplesec.

index.d.ts

// 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) | undefined;
}

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 {
    function generate(n: number, cb: (words: WordArray) => void): void;
}

Additional Details

  • Last updated: Fri, 02 Jul 2021 19:37:18 GMT
  • Dependencies: @types/node
  • Global values: none

Credits

These definitions were written by Ben Speakman.

3.0.3

6 months ago

3.0.2

7 months ago

3.0.1

3 years ago

3.0.0

6 years ago