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

kepa-de-mimi

v1.0.404

Published

streaming file encryption and decryption

Downloads

3

Readme

kepa-de-mimi (可怕的秘密)

This is a new version. It might be sort of inbetween working but I wanted to publish something without the cryptocurrency donations/tips information because someone altered that text so that it would point at their addresses and I wasn't getting any money from those donations. If this version doesn't work try 1.0.16 I think? I will try to upload a version that works the way I want sooner or later. I have just been working on something else.

I haven't finished writing the tests yet but it has many more tests than it used to have. I would also like to more carefully handle various ciphers and give better error/usage information so that I don't have to hash the inputs to make them the correct length.

Streaming file encryption and decryption command line interface that is useful for encrypting and decrypting large files very quickly.

Trying to move the documentation to a wiki so that there is less git interaction.

npm install kepa-de-mimi -g

or on mac

sudo npm install kepa-de-mimi -g

or if npmjs.com isn't working right

git clone https://github.com/ballantyne/kepa-de-mimi.git
cd kepa-de-mimi
npm install
cd ../
sudo npm install kepa-de-mimi/ -g

or click here to download a zip.

and then

  mimi encrypt -p password -v vector -i filename.extension 
  mimi decrypt -p password -v vector -i filename.extension.mimi

Just using a password is becoming deprecated in the crypto standard library so I am going to make it a requirement to use a vector. To use the old method of encryption use the --backwards flag. The new method might be very different and so it might not work to decrypt old files.

  mimi encrypt -p password -i filename.extension --backwards 
  mimi decrypt -p password -i filename.extension.mimi --backwards

I have also added the ability to pipe data to and from and also redirect from mimi like so:

  cat filename.extension | mimi encrypt -p password --backwards -O >> filename.extension.mimi
  cat filename.extension.mimi | mimi decrypt -p password --backwards -O >> filename.extension

  # or

  cat filename.extension | mimi encrypt -p password -v vector -O >> filename.extension.mimi
  cat filename.extension.mimi | mimi decrypt -p password -v vector -O >> filename.extension

Contributing

If you'd like to contribute a feature or bugfix: Thanks! To make sure your fix/feature has a high chance of being included, please read the following guidelines:

  1. Post a pull request.
  2. Make sure there are tests! We will not accept any patch that is not tested. It's a rare time when explicit tests aren't needed. If you have questions about writing tests for paperclip, please open a GitHub issue.

And once there are some contributors, then I would like to thank all of the contributors!

License

It is free software, and may be redistributed under the terms specified in the MIT-LICENSE file.

Copyright

© 2022 Scott Ballantyne. See LICENSE for details.