@types/sm-crypto
TypeScript icon, indicating that this package has built-in type declarations

0.3.4 • Public • Published

Installation

npm install --save @types/sm-crypto

Summary

This package contains type definitions for sm-crypto (https://github.com/JuneAndGreen/sm-crypto#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sm-crypto.

index.d.ts

import BigInteger = require("bigi");

export interface KeyPairHex {
    privateKey: string;
    publicKey: string;
}

export interface KeyPairPoint extends KeyPairHex {
    k: BigInteger;
    x1: BigInteger;
}

/**
 * Cipher Mode
 * - `0`:C1C2C3
 * - `1`:C1C3C2
 */
export type CipherMode = 0 | 1;

export namespace sm2 {
    // TODO Type of parameter of jsbn.BigInteger constructor
    function generateKeyPairHex(): KeyPairHex;
    function doEncrypt(msg: string | ArrayLike<number>, publicKey: string, cipherMode?: CipherMode): string;
    function doDecrypt(encryptData: string, privateKey: string, cipherMode?: CipherMode, outputType?: {
        output?: "string" | "array";
    }): string;
    function doSignature(msg: string | number[], privateKey: string, options?: {
        pointPool?: KeyPairPoint[] | undefined;
        der?: boolean | undefined;
        hash?: boolean | undefined;
        publicKey?: string | undefined;
        userId?: string | undefined;
    }): string;
    function doVerifySignature(msg: string | number[], signHex: string, publicKey: string, options?: {
        der?: boolean | undefined;
        hash?: boolean | undefined;
        userId?: string | undefined;
    }): boolean;
    function getPoint(): KeyPairPoint;
}

export function sm3(input: string | ArrayLike<number>, hmac?: {
    key: HexString | ArrayLike<number>;
    mode?: "hmac";
}): string;

// SM4.encrypt() expects UTF8 strings (such as "hello"), while SM4.decrypt() expects hex strings (such as "8d0a1f").
export type HexString = string;
export type UTF8String = string;

export interface SM4ModeBase {
    padding?: "none" | "pkcs#5" | "pkcs#7";
    mode?: "cbc";
    iv?: number[] | HexString;
}

export interface SM4Mode_StringOutput extends SM4ModeBase {
    output: "string";
}

export interface SM4Mode_ArrayOutput extends SM4ModeBase {
    output: "array";
}

export namespace sm4 {
    function encrypt(
        inArray: number[] | UTF8String,
        key: number[] | HexString,
        mode?: SM4ModeBase | SM4Mode_StringOutput,
    ): string;
    function encrypt(inArray: number[] | UTF8String, key: number[] | HexString, mode: SM4Mode_ArrayOutput): number[];

    function decrypt(
        inArray: number[] | HexString,
        key: number[] | HexString,
        mode?: SM4ModeBase | SM4Mode_StringOutput,
    ): string;
    function decrypt(inArray: number[] | HexString, key: number[] | HexString, mode: SM4Mode_ArrayOutput): number[];
}

Additional Details

  • Last updated: Tue, 07 Nov 2023 15:11:36 GMT
  • Dependencies: @types/bigi

Credits

These definitions were written by Thermod.

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.1.02ts2.8
0.1.02ts2.9
0.1.02ts3.0
0.1.02ts3.1
0.1.02ts3.2
0.1.02ts3.3
0.1.02ts3.4
0.1.02ts3.5
0.1.10ts3.6
0.3.41,884ts5.8
0.3.41,884ts5.7
0.3.41,884latest
0.3.41,884ts4.5
0.3.41,884ts4.6
0.3.41,884ts4.7
0.3.41,884ts4.8
0.3.41,884ts4.9
0.3.41,884ts5.0
0.3.41,884ts5.1
0.3.41,884ts5.2
0.3.41,884ts5.3
0.3.41,884ts5.4
0.3.41,884ts5.5
0.3.41,884ts5.6
0.3.41,884ts5.9
0.3.029ts3.7
0.3.029ts3.8
0.3.029ts3.9
0.3.029ts4.0
0.3.029ts4.1
0.3.029ts4.2
0.3.120ts4.3
0.3.120ts4.4

Version History

VersionDownloads (Last 7 Days)Published
0.3.41,884
0.3.31
0.3.20
0.3.120
0.3.029
0.1.10
0.1.02

Package Sidebar

Install

npm i @types/sm-crypto

Weekly Downloads

1,936

Version

0.3.4

License

MIT

Unpacked Size

7.54 kB

Total Files

5

Last publish

Collaborators

  • types