Giter VIP home page Giter VIP logo

password-keeper's Introduction

Password Keeper 🔐

Description

This program goals is to keep safely passowrds that the user wants to store in it. for storing passwords by site/address, searches passwords by address and saves passwords to file with simple “encryption”.

Functions

  1. Storing passwords.
  2. Searching for passowrd by typing address of a site.
  3. Savinf passwords to file.
  4. Printing a report of sites and passwords.

Encryption

  • The encryption is based on master key that is asked from the user.
  • The master key is be stored anywhere.
  • If the user forgets the master key the passwords can’t be recovered.
  • Passwords are decrypted only when displayed and plaintext password must be wiped from memory after display.
  • Program encrypts the passwords by performing xor-operation between master key and the password.
  • Encryption is performed by xoring each character in the password with a character from the master key.
  • Master key is repeated consecutively over the password.
  • The encryption may produce zero as a result of encryption so you need to store the length of the password to be able decrypt the password later.
  • Running the “encryption” twice using the same master key should returns password to its original state.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.