Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mybucks-online/key-generation
This is a core part of mybucks.online, demonstrating the key generation mechanism
https://github.com/mybucks-online/key-generation
ethersjs keccak256 password-hashing privatekey-generator scrypt
Last synced: 2 days ago
JSON representation
This is a core part of mybucks.online, demonstrating the key generation mechanism
- Host: GitHub
- URL: https://github.com/mybucks-online/key-generation
- Owner: mybucks-online
- Created: 2024-08-27T17:00:43.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-09-10T14:38:50.000Z (4 months ago)
- Last Synced: 2024-11-08T12:43:00.087Z (about 2 months ago)
- Topics: ethersjs, keccak256, password-hashing, privatekey-generator, scrypt
- Language: JavaScript
- Homepage: https://docs.mybucks.online/concept/key-generation
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mybucks.online Wallet Private Key Generation
This repository showcases the process of **generating a private key** for use in the `MyBucks.Online` wallet.
## User Input
The application receives two inputs from the user:- Password
- Passcode## Key Generation Process
The private key is generated using the following cryptographic functions:- scrypt
- keccak256Please check `index.js` in this repository for the implementation details.
For more details, please refer to [this documentation](https://docs.mybucks.online/concept/how-it-works).## How to run
```
npm install
npm start
```