{"id":15297417,"url":"https://github.com/korniichuk/fbi","last_synced_at":"2025-08-25T00:32:04.744Z","repository":{"id":57428806,"uuid":"79731661","full_name":"korniichuk/fbi","owner":"korniichuk","description":"The password encryption utility","archived":false,"fork":false,"pushed_at":"2017-01-22T18:02:44.000Z","size":21,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-17T02:42:04.333Z","etag":null,"topics":["fbi","pass","passwd","password"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/korniichuk.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-01-22T17:06:27.000Z","updated_at":"2024-10-10T12:07:50.000Z","dependencies_parsed_at":"2022-09-02T16:39:39.223Z","dependency_job_id":null,"html_url":"https://github.com/korniichuk/fbi","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/korniichuk%2Ffbi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/korniichuk%2Ffbi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/korniichuk%2Ffbi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/korniichuk%2Ffbi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/korniichuk","download_url":"https://codeload.github.com/korniichuk/fbi/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230852607,"owners_count":18290081,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fbi","pass","passwd","password"],"created_at":"2024-09-30T19:17:24.508Z","updated_at":"2024-12-22T15:55:00.548Z","avatar_url":"https://github.com/korniichuk.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":".. contents:: Table of contents\n\nIntroduction\n============\nThe passwords encryption utility. Do not save your passwords as plaintext!\n\nInstallation\n============\nInstall the fbi utility from PyPI\n---------------------------------\n::\n\n    $ sudo pip install fbi\n\nInstall the fbi utility from GitHub\n-----------------------------------\n::\n\n    $ sudo pip install git+git://github.com/korniichuk/fbi#egg=fbi\n\nUpgrade the fbi utility from PyPI\n---------------------------------\n::\n\n    $ sudo pip install -U fbi\n\nor::\n\n    $ sudo pip install --upgrade fbi\n\nUninstall the fbi utility\n-------------------------\n::\n\n    $ sudo pip uninstall fbi\n\nDevelopment installation\n========================\n::\n\n    $ git clone git://github.com/korniichuk/fbi.git\n    $ cd fbi\n    $ sudo pip install .\n\nQuickstart\n==========\n**First**, init the fbi utility::\n\n    $ fbi init\n\n**Second**, encode password in a file::\n\n    $ fbi encode PATH\n\nExample::\n\n    $ fbi encode ~/.key/netezza.enc\n\n**Third**, decode password from a file::\n\n    \u003e\u003e\u003e from fbi import getpassword\n    \u003e\u003e\u003e path = \"~/.key/netezza.enc\"\n    \u003e\u003e\u003e passwd = getpassword(path)\n\nCLI client\n==========\nA command line interface for managing an encoded password files.\n\nHelp\n----\nThe standard output for –help::\n\n    $ fbi -h\n\nor::\n\n    $ fbi --help\n\nFor information on using subcommand \"SUBCOMMAND\", do::\n\n    $ fbi SUBCOMMAND -h\n\nor::\n\n    $ fbi SUBCOMMAND --help\n\nExample::\n\n    $ fbi init -h\n\nVersion\n-------\nThe standard output for –version::\n\n    $ fbi -v\n\nor::\n\n    $ fbi --version\n\nInit the fbi utility\n--------------------\n::\n\n    $ fbi init\n\nEncode password in a file\n-------------------------\n::\n\n    $ fbi encode PATH\n\nWhere:\n\n* ``PATH`` -- destination path.\n\nExample::\n\n    $ fbi encode /home/titan/.key/netezza.enc\n\nor::\n\n    $ fbi encode ~/.key/netezza.enc\n\nDecode password from a file\n---------------------------\n::\n\n   $ fbi decode PATH\n\nWhere:\n\n* ``PATH`` -- source path.\n\nExample::\n\n    $ fbi decode /home/titan/.key/netezza.enc\n\nor::\n\n    $ fbi decode ~/.key/netezza.enc\n\n.. note:: Do not use ``$ fbi decode PATH`` for your automation scripting.\n\nClient library\n==============\nA Python client for managing an encoded password files.\n\nGet password from an encoded file\n---------------------------------\n::\n\n    \u003e\u003e\u003e from fbi import getpassword\n    \u003e\u003e\u003e getpassword(path)\n\nWhere:\n\n* ``path`` -- source path.\n\nExample::\n\n    \u003e\u003e\u003e from fbi import getpassword\n    \u003e\u003e\u003e path = \"/home/titan/.key/netezza.enc\"\n    \u003e\u003e\u003e passwd = getpassword(path)\n\nor::\n\n    \u003e\u003e\u003e from fbi import getpassword\n    \u003e\u003e\u003e path = \"~/.key/netezza.enc\"\n    \u003e\u003e\u003e passwd = getpassword(path)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkorniichuk%2Ffbi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkorniichuk%2Ffbi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkorniichuk%2Ffbi/lists"}