You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Welcome to the documentation for **inxy-payments/signature-sdk-go**! This library is designed to help you sign messages using a private key. Whether you're a beginner or an experienced developer, this guide will help you get the most out of this library.
3
+
The `signature-sdk-go` package provides functionality for signing messages using RSA private keys and verifying signatures using the corresponding RSA public keys. This package is useful for ensuring the integrity and authenticity of messages in your Go applications.
6
4
7
5
## Installation
6
+
7
+
To use this package, you need to have Go installed. You can download it from [golang.org](https://golang.org/dl/).
8
+
9
+
To include this package in your project, run:
10
+
11
+
```sh
12
+
go get github.com/inxy-payments/signature-sdk-go
13
+
```
14
+
15
+
## Usage
16
+
Below is an example of how to use the signature-sdk-go package to sign a message and verify the signature.
0 commit comments