npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

lsea

v1.4.5

Published

LSEA is a secure library for encrypting and decrypting data with strong encryption.

Downloads

53

Readme

LSEA (Lux Secure Encryption Algorithm)

LSEA is a next generation method of encrypting and decrypted data securly with very hard to crack encryption


What we do to keep your data safe:

  • we make sure that the encrypted data generated with LSEA is long, scrambled, and is unreadable
  • we make sure the data you encrypt is never open to someone elses eyes without proper. decryption with the key you use to encrypt it.
  • we use very hard to crack encryption methods

LSEA Functions:

  • Encrypt: Encrypt data with a key (takes 2 parameters: string, key)
  • Decrypt: Decrypt encrypted data with a key (takes 2 parameters: encrypted_string, key)

Encrypting Data:

var LSEA = require("LSEA")
console.log(LSEA.Encrypt("<STRING>", "<KEY>"))
/*
Example Output:
X19MU0VBX0VOQ1JZUFRFRC8=VTJG27102202RHVmtY8172500TlhaHFtV0
RqNlk3ZFNRRVlpU3JnWVJJUmJGS1FUdkQ0RzlBdjNFbE5RUVJsZjhsSkZ2
TXRr8172500TZGbE5QK3lmK00zVXA0TTdRVklpUVhhRVExTTJjQnln2710
220U1XbEl2TGZmS2pWZ0NRZTZvVjZ5UVNOdmdaUU1V2710220Xkz271022
01Z32710220mpNTGRlOHB0NmtydnZNQlBÃ2710220jBK8172500kFQ2710
2203Bu2710220npE2710220m1OU0hLZGVveHlCL3BSU0JSVUNYU1JjZzlD
2710220zl2eVpC8172500VZ3WmRqRXBCYU13VjBYeVA3d1BÃVHpIL0xIek
l0aUJ6T0JwOWdJT3ZOUWRR2710220VR6YjR28172500Uk2TS9YU1RlUEV4
UWhUV1NIWkxWODRJYV2710220vaHpZRGp0UXAweVJTT3VFOWNpYW1Id1dL
OE2710220vVnE2NTd8172500d1B3bGY2K0lid3FPNWdtdUpZUVZtTkhmR3
NV2710220E5PNUJlait81725002710220m81725001TjNCSjVHOTZk8172
5002RiQS9WOFBvT3ZU2710220mZ6UERpOHgzNDhjRG45UlFZelÃ4N2x3S1
N817250081725003hDUy9l8172500G9DZkÃ2bnkrNGJZVFBKRGNwVENjQW
w0K3dÃQnZJY2l0SnlSS2RBU3NYNmhxZDVQVmRyd3BYbkRH8172500zdZVE
QyWTYvL1hERHNPRnhaaHVFQS9FdHRjTTNKV3RVZEt1UU8172500r817250
0W4z27102200FFSWk2eG01d0g1TG902710220jFDbE90dmQ2bEÃwVFd2bD
ZmUVQxdHBwb1RxUzRH8172500G1YT25lNElGZlkr8172500Wk0NCt4ZUxh
8172500kdQ2710220yswdjRkSi9ud0twWGF817250081725001VJbUxC27
10220k5ZN3JCb1NGSCtqeE5LdzJpT0F5V0R2aXF2SmduYn27102204TmJq
SFY5R1F8172500Q3BRdnBzWjJZNisvWXZaV181725002T3U3Ykx2NXE3Wl
hZd24xUUxIUGU4YnF0UHÃrSC8427102202lqaVpl271022021pazdGbFFL
TGxqQS9hZXp6Y0ZP2710220TUwVlJPRzlNWDN4WFlhV2U08172500WFl81
72500Vl2YnFvYWNrOEFzRW1IVEgxOUFqUkpyeHBhKzJjNTlWYitHb05kTD
AvSHJrd0pw2710220UVaSzk02710220jh4NVphZTBWZjNadHd0RUwxS2Z5
K3lj8172500UVQSUhkajN8172500Y2RUa3FGNmtQ8172500GZuZHU4RFZ3
Ng==
*/

Decrypting Data:

var LSEA = require("LSEA")
console.log(LSEA.Decrypt("<ENCRYPTED_STRING>", "<KEY>"))
/* 
Example Output:
Hello world!
*/