Giter Site home page Giter Site logo

passgen-csharp's Introduction

PassGen C#

Application is a CLI password generator with link to local database

Application made in C# using .NET 5.0. Made to practice the experience with C# and link with database. I usually use a lot of CLI tools, so I thought, why not do mine, since password generators and stores are frequent in my daily life

Dependencies

It requires .NET installed and a MySQL database installed, a database and a user created for the application. Below is the code for installing and configuring the database for Ubuntu 20.04

  • In your shell

      sudo apt update
      sudo apt install mariadb-client mariadb-server mariadb-common
      sudo mysql
    
  • At MariaDB

      create database PassGen;
      create table Passwords(id int(11) NOT NULL AUTO_INCREMENT, user varchar(250),password varchar(50) NOT NULL, application varchar(250), primary key (id));
      grant all on PassGen.* to PassGenApp@'%' identified by '78964254';
      flush privileges;
    

Functions

  • 1° Generate a password and save it to the database (or not). You can choose or not to save the application (As URL or name) and your Username.

  • 2° Same as above, but you can enter an existing password to be saved in the database

  • 3° Display your passwords saved in the database, along with other data such as application and username

Screenshot

Installation and execution

  • To run the application, clone this github repository

      git clone https://github.com/WeversonL/PassGen-Csharp.git
    
  • Enter the project folder and run using .NET

      dotnet run
    

passgen-csharp's People

Contributors

weversonl avatar

Watchers

 avatar

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.