# simple-rsa

> http request .using for get,post,and post file.

Latest version **0.0.2** (published 2013-09-29) · 0 weekly downloads

## Install

```sh
npm install simple-rsa
pnpm add simple-rsa
yarn add simple-rsa
bun add simple-rsa
```

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2013-09-29 |
| First published | 2013-06-17 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | yizhiren |
| Maintainers | sxyizhiren |
| Keywords | encrypt, rsa |

## Links

- npm: https://www.npmjs.com/package/simple-rsa
- Repository: https://github.com/sxyizhiren/simple-rsa
- npm.io page: https://npm.io/package/simple-rsa

## Alternatives

- [@gemini-wallet/core](https://npm.io/package/@gemini-wallet/core.md) — 515.6K weekly downloads
- [utility](https://npm.io/package/utility.md) — 416.6K weekly downloads
- [@primno/dpapi](https://npm.io/package/@primno/dpapi.md) — 7.2K weekly downloads
- [pi-readseek](https://npm.io/package/pi-readseek.md) — 3.7K weekly downloads
- [@emilia-protocol/verify](https://npm.io/package/@emilia-protocol/verify.md) — 1.1K weekly downloads

## Recent versions

- 0.0.2 (latest) — 2013-09-29
- 0.0.1 — 2013-06-17

## README

simple-rsa
==========

install:

npm install simple-rsa



a simple rsa module,using for encode password.

Usage:

var RSATool=require('../lib/simple-rsa');

var encParam = {

    "e" : "10001",
	
    "n" : "856381005a1659cb02d13f3837ae6bb0fab86012effb3a41c8b84badce287759",
	
};

var encryptor=RSATool.Encryptor(encParam.e,encParam.n);

var pass1=encryptor('12345');

var pass2=encryptor('this is a test!');


参考资料：

http://www.ohdave.com/rsa/

---
_Source: https://npm.io/package/simple-rsa · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
