Skip to content

Commit

Permalink
🚀 v1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
siva-sparkout committed Jun 19, 2024
1 parent ba6f592 commit d70b573
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @nilajs/digital-signature
# nilajs-digital-signature

A digital signature is a cryptographic mechanism used to verify the authenticity and integrity of digital messages or documents. It provides assurances that the message was indeed created by a particular entity (authentication) and that the message has not been altered or tampered with since it was signed (integrity).

Expand All @@ -9,7 +9,7 @@ A simple library for generating elliptic curve (secp256k1) key pairs, signing da
You can install the package via npm:

```sh
npm install @nilajs/digital-signature
npm install nilajs-digital-signature
```

## Usage
Expand All @@ -22,7 +22,7 @@ const {
checkPublicKeyValid,
signData,
verifySignature
} = require('@nilajs/digital-signature');
} = require('nilajs-digital-signature');
```

### Generate Wallet
Expand Down
15 changes: 12 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,24 @@
{
"name": "@nilajs/digital-signature",
"name": "nilajs-digital-signature",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"private": false,
"keywords": ["blockchain", "digital signature"],
"author": "sivabharathy <[email protected]>",
"license": "MIT",
"description": "",
"description": "A simple library for generating elliptic curve (secp256k1) key pairs, digital signature, signing data, verifying signatures, and validating public keys.",
"dependencies": {
"elliptic": "^6.5.5"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/gotocva/nilajs-digital-signature.git"
},
"bugs": {
"url": "https://github.com/gotocva/nilajs-digital-signature/issues"
},
"homepage": "https://github.com/gotocva/nilajs-digital-signature#readme"
}

0 comments on commit d70b573

Please sign in to comment.