# cipherhash

> Custom Encryption Algrothim Used in IXO.js

Latest version **1.0.4** (published 2021-08-03) · MIT license · 0 weekly downloads

## Install

```sh
npm install cipherhash
pnpm add cipherhash
yarn add cipherhash
bun add cipherhash
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.4 |
| Published | 2021-08-03 |
| First published | 2018-05-31 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 7.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | lakefox |
| Maintainers | m-a-s-o-n |

## Links

- npm: https://www.npmjs.com/package/cipherhash
- npm.io page: https://npm.io/package/cipherhash

## Recent versions

- 1.0.4 (latest) — 2021-08-03
- 1.0.3 — 2018-12-15
- 1.0.2 — 2018-12-15
- 1.0.1 — 2018-05-31
- 1.0.0 — 2018-05-31

## README

# cipherHash
Custom Encryption Algrothim

# How to Install

```
npm i cipherhash
```

# How to Use
``` javascript
// Load the module
var c = require("cipherhash");

// Encrypt a String

c.cipherHash("message", "password");

>>> "30A1Dd4XQawUdz"

// Decrypt a String

c.UnCipherHash("30A1Dd4XQawUdz", "password");

>>> "message"

// Get a Base64 Hash of a String

c.hash("string");

>>> "473287f8298dba7163a897908958f7c0eae733e25d2e027992ea2edc9bed2fa8"

```

This is a super simple library that's made mainly for personal use, but feel free to use it!

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