Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
endianness
Advanced tools
Swap endianness in byte arrays.
Copyright (c) 2017 Rafael da Silva Rocha.
https://github.com/rochars/endianness
Swap endianness in byte arrays. The input array is modified in-place.
npm install endianness
Use the compiled file in the /dist folder:
<script src="endianness-min.js"></script>
<script>
endianness([64, 9, 33, 251, 84, 68, 45, 24], 8);
// returns [24, 45, 68, 84, 251, 33, 9, 64]
</script>
Or get it from the jsDelivr CDN:
<script src="https://cdn.jsdelivr.net/npm/endianness@4.0.0"></script>
const endianness = require("endianness");
// Swap endianness of one 64-bit value:
endianness([64, 9, 33, 251, 84, 68, 45, 24], 8);
// returns [24, 45, 68, 84, 251, 33, 9, 64]
// Swap endianness of two 24-bit values:
endianness(["00", "00", "80", "ff", "ff", "7f"], 3),
// returns ["80", "00", "00", "7f", "ff", "ff"];
/**
* Swap the endianness of units of information in a byte array.
* The original array is modified in-place.
* @param {!Array<number>|!Array<string>|Uint8Array} bytes The bytes.
* @param {number} offset The number of bytes of each unit of information.
*/
function endianness(bytes, offset) {}
Copyright (c) 2017 Rafael da Silva Rocha.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Swap endianness in byte arrays.
The npm package endianness receives a total of 4,888 weekly downloads. As such, endianness popularity was classified as popular.
We found that endianness demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.