1.1.2 • Published 3 months ago

usm-decrypter v1.1.2

Weekly downloads
9
License
MIT
Repository
github
Last release
3 months ago
export declare type DecryptCallback = (err: Error | null, outdir: string) => void

export declare enum Encoding {
  UTF8 = 65001,
  SHIFT_JIS = 932
}

export declare class USMDecrypter {
  constructor(cipherKey1?: number, cipherKey2?: number)

  getEncoding (): Encoding
  setEncoding (encoding: Encoding): void

  demux (usmFile: string, callback?: DecryptCallback): void
  demux (usmFile: string, outdir: string, callback?: DecryptCallback): void
  demux (usmFile: string, outdir: string, adxDecode: boolean, callback?: DecryptCallback): void

  demuxSync (usmFile: string, outdir?: string, adxDecode?: boolean): string
}
1.1.2

3 months ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago