Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
- keccak256

Please 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
```