UNPKG

@stellot/crypto

Version:

Crypto libraries for front and backend

8 lines (7 loc) 270 B
import { BigInteger as BigInt } from 'jsbn'; export default class EncryptedValue { readonly a: BigInt; readonly b: BigInt; constructor(a: string | number | BigInt, b: string | number | BigInt); multiply(encryptedValue: EncryptedValue): EncryptedValue; }