summaryrefslogtreecommitdiffstats
path: root/comm/third_party/asn1js/src/internals/utils.ts
blob: 84d1f3164f1df29ed584de0e5c5dfc33b026de8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// Utility functions

import type { LocalBaseBlock } from "./LocalBaseBlock";

/**
 * Throws an exception if BigInt is not supported
 * @throws Throws Error if BigInt is not supported
 */
export function assertBigInt(): void {
  if (typeof BigInt === "undefined") {
    throw new Error("BigInt is not defined. Your environment doesn't implement BigInt.");
  }
}

/**
 * Concatenates buffers from the list
 * @param buffers List of buffers
 * @returns Concatenated buffer
 */
export function concat(buffers: ArrayBuffer[]): ArrayBuffer {
  let outputLength = 0;
  let prevLength = 0;

  // Calculate output length
  for (let i = 0; i < buffers.length; i++) {
    const buffer = buffers[i];
    outputLength += buffer.byteLength;
  }

  const retView = new Uint8Array(outputLength);

  for (let i = 0; i < buffers.length; i++) {
    const buffer = buffers[i];
    retView.set(new Uint8Array(buffer), prevLength);
    prevLength += buffer.byteLength;
  }

  return retView.buffer;
}

/**
 * Check input "Uint8Array" for common functions
 * @param baseBlock
 * @param inputBuffer
 * @param inputOffset
 * @param inputLength
 * @returns
 */
export function checkBufferParams(baseBlock: LocalBaseBlock, inputBuffer: Uint8Array, inputOffset: number, inputLength: number): boolean {
  if (!(inputBuffer instanceof Uint8Array)) {
    baseBlock.error = "Wrong parameter: inputBuffer must be 'Uint8Array'";

    return false;
  }

  if (!inputBuffer.byteLength) {
    baseBlock.error = "Wrong parameter: inputBuffer has zero length";

    return false;
  }

  if (inputOffset < 0) {
    baseBlock.error = "Wrong parameter: inputOffset less than zero";

    return false;
  }

  if (inputLength < 0) {
    baseBlock.error = "Wrong parameter: inputLength less than zero";

    return false;
  }

  if ((inputBuffer.byteLength - inputOffset - inputLength) < 0) {
    baseBlock.error = "End of input reached before message was fully decoded (inconsistent offset and length values)";

    return false;
  }

  return true;
}