MCPcopy Create free account
hub / github.com/Dstack-TEE/dstack / ts64

Function ts64

vmm/src/x25519.js:102–111  ·  view source on GitHub ↗
(x, i, h, l)

Source from the content-addressed store, hash-verified

100 0x2b83,
101 ]);
102 function ts64(x, i, h, l) {
103 x[i] = (h >> 24) & 0xff;
104 x[i + 1] = (h >> 16) & 0xff;
105 x[i + 2] = (h >> 8) & 0xff;
106 x[i + 3] = h & 0xff;
107 x[i + 4] = (l >> 24) & 0xff;
108 x[i + 5] = (l >> 16) & 0xff;
109 x[i + 6] = (l >> 8) & 0xff;
110 x[i + 7] = l & 0xff;
111 }
112 function vn(x, xi, y, yi, n) {
113 var i, d = 0;
114 for (i = 0; i < n; i++)

Callers 1

crypto_hashFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected