Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@stricahq/bip32ed25519
Advanced tools
Pure javascript implementation of Bip32Ed25519, used for Cardano blockchain key pair.
Pure javascript implementation of Bip32Ed25519, used for Cardano blockchain key pair.
yarn add @stricahq/bip32ed25519
<script src="[use jsDelivr or Unpkg]"></script>
// access bip32ed25519 global variable
import { Bip32PrivateKey } from "@stricahq/bip32ed25519";
... // Bip39 entropy from mnemonics
const rootKey = await Bip32PrivateKey.fromEntropy(entropy);
...
// hardened derivation
const accountKey = rootKey
.derive(2147483648 + 1852) // purpose
.derive(2147483648 + 1815) // coin type
.derive(2147483648 + 0); // account index
const spendingKey = accountKey
.derive(0) // chain
.derive(0) // payment key index
.toPrivateKey();
const pubKey = spendingKey
.toPublicKey()
.toBytes();
Checkout tests and API doc for more details
Find the API documentation here
Copyright 2021 Strica
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
FAQs
Pure javascript implementation of Bip32Ed25519, used for Cardano blockchain key pair.
The npm package @stricahq/bip32ed25519 receives a total of 5,742 weekly downloads. As such, @stricahq/bip32ed25519 popularity was classified as popular.
We found that @stricahq/bip32ed25519 demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.