From f960a0955715b89735349e5182119ba525ebe655 Mon Sep 17 00:00:00 2001 From: Jason Dreyzehner Date: Tue, 20 Oct 2015 08:50:22 -0400 Subject: [PATCH] format --- docs/index.md | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/docs/index.md b/docs/index.md index 89ffa0f..dfd4d6c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,33 +1,24 @@ ---- -title: Message Verification and Signing -description: Bitcoin Message Verification and Signing. ---- # Message Verification and Signing - -## Description - -Bitcore implementation of [bitcoin message signing and verification] -(http://bitcoin.stackexchange.com/questions/3337/what-are-the-safety-guidelines-for-using-the-sign-message-feature/3339#3339). -This is used to cryptographically prove that a certain message was signed by the holder of an address private key. +Bitcore implementation of [bitcoin message signing and verification](http://bitcoin.stackexchange.com/questions/3337/what-are-the-safety-guidelines-for-using-the-sign-message-feature/3339#3339). This is used to cryptographically prove that a certain message was signed by the holder of an address private key. For more information refer to the [bitcore-message](https://github.com/bitpay/bitcore-message) github repo. ## Installation - Message Verification and Signing is implemented as a separate module and you must add it to your dependencies: For node projects: + ```bash npm install bitcore-message --save ``` For client-side projects: + ```bash bower install bitcore-message --save ``` ## Example - To sign a message: ```javascript