bisos.crypt


Namebisos.crypt JSON
Version 0.15 PyPI version JSON
download
home_pageNone
Summarybisos.crypt: BPO Based Encryption/Decryption Facilities that provide vault, symetric and PKCS encryption, decryption, and hashing capabilities.
upload_time2025-02-18 03:26:35
maintainerMohsen Banan
docs_urlNone
authorMohsen Banan
requires_pythonNone
licenseAGPL
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ===============================================================================================================================================
bisos.crypt: BPO Based Encryption/Decryption Facilities that provide vault, symetric and PKCS encryption, decryption, and hashing capabilities.
===============================================================================================================================================

.. contents::
   :depth: 3
..

Overview
========

bisos.crypt is a python package that uses the PyCS-Framework for NOTYET.
It is a BISOS-Capability and a Standalone-BISOS-Package.

*bisos.crypt* is based on PyCS-Foundation and can be used both as a
Command and as a Service (invoke/perform model of remote operations)
using RPYC for central management of multiple systems.

.. _table-of-contents:

Table of Contents TOC
=====================

-  `Overview <#overview>`__
-  `Part of BISOS — ByStar Internet Services Operating
   System <#part-of-bisos-----bystar-internet-services-operating-system>`__
-  `bisos.crypt is a Command Services (PyCS)
   Facility <#bisoscrypt-is-a-command-services-pycs-facility>`__
-  `Uses of bisos.crypt <#uses-of-bisoscrypt>`__
-  `bisos.crypt as a Standalone Piece of
   BISOS <#bisoscrypt-as-a-standalone-piece-of-bisos>`__
-  `Installation <#installation>`__

   -  `Installation With pip <#installation-with-pip>`__
   -  `Installation With pipx <#installation-with-pipx>`__

-  `Usage <#usage>`__

   -  `Locally (system command-line) <#locally-system-command-line>`__
   -  `Remotely (as a service –
      Performer+Invoker) <#remotely-as-a-service----performerinvoker>`__

      -  `Performer <#performer>`__
      -  `Invoker <#invoker>`__

   -  `Use by Python script <#use-by-python-script>`__

      -  `bisos.crypt Source Code is in writen in COMEEGA (Collaborative
         Org-Mode Enhanced Emacs Generalized Authorship)
         – <#bisoscrypt-source-code-is-in-writen-in-comeega-collaborative-org-mode-enhanced-emacs-generalized-authorship----httpsgithubcombx-bleecomeega>`__\ https://github.com/bx-blee/comeega\ `. <#bisoscrypt-source-code-is-in-writen-in-comeega-collaborative-org-mode-enhanced-emacs-generalized-authorship----httpsgithubcombx-bleecomeega>`__
      -  `The primary API for bisos.crypt is ./bisos/crypt/crypt-csu.py.
         It is self documented in
         COMEEGA. <#the-primary-api-for-bisoscrypt-is-bisoscryptcrypt-csupy-it-is-self-documented-in-comeega>`__

-  `Documentation and Blee-Panels <#documentation-and-blee-panels>`__

   -  `bisos.crypt Blee-Panels <#bisoscrypt-blee-panels>`__

-  `Support <#support>`__

Part of BISOS — ByStar Internet Services Operating System
=========================================================

| Layered on top of Debian, **BISOS**: (By\* Internet Services Operating
  System) is a unified and universal framework for developing both
  internet services and software-service continuums that use internet
  services. See `Bootstrapping ByStar, BISOS and
  Blee <https://github.com/bxGenesis/start>`__ for information about
  getting started with BISOS.
| **BISOS** is a foundation for **The Libre-Halaal ByStar Digital
  Ecosystem** which is described as a cure for losses of autonomy and
  privacy in a book titled: `Nature of
  Polyexistentials <https://github.com/bxplpc/120033>`__

*bisos.crypt* is part of BISOS.

bisos.crypt is a Command Services (PyCS) Facility
=================================================

bisos.crypt can be used locally on command-line or remotely as a
service. bisos.crypt is a PyCS multi-unit command-service. PyCS is a
framework that converges developement of CLI and Services. PyCS is an
alternative to FastAPI, Typer and Click.

bisos.crypt uses the PyCS Framework to:

#. Provide access to crypt facilities through native python.
#. Provide local access to crypt facilities on CLI.
#. Provide remote access to crypt facilities through remote invocation
   of python Expection Complete Operations using
   `rpyc <https://github.com/tomerfiliba-org/rpyc>`__.
#. Provide remote access to crypt facilities on CLI.

What is unique in the PyCS-Framework is that these four models are all a
single abstraction.

The core of PyCS-Framework is the *bisos.b* package (the
PyCS-Foundation). See https://github.com/bisos-pip/b for an overview.

Uses of bisos.crypt
===================

Within BISOS, bisos.crypt is used as a common facility.

bisos.crypt as a Standalone Piece of BISOS
==========================================

bisos.crypt is a standalone piece of BISOS. It can be used as a
self-contained Python package separate from BISOS. Follow the
installtion and usage instructions below for your own use.

Installation
============

The sources for the bisos.crypt pip package is maintained at:
https://github.com/bisos-pip/crypt.

The bisos.crypt pip package is available at PYPI as
https://pypi.org/project/bisos.crypt

You can install bisos.crypt with pip or pipx.

Installation With pip
---------------------

If you need access to bisos.crypt as a python module, you can install it
with pip:

.. code:: bash

   pip install bisos.crypt

Installation With pipx
----------------------

If you only need access to bisos.crypt as a command on command-line, you
can install it with pipx:

.. code:: bash

   pipx install bisos.crypt

The following commands are made available:

-  crypt.cs
-  roInv-crypt.cs
-  roPerf-crypt.cs

These are all one file with 3 names. *roInv-crypt.cs* and
*roPerf-crypt.cs* are sym-links to *crypt.cs*

Usage
=====

Locally (system command-line)
-----------------------------

``crypt.cs`` can be invoked directly as

.. code:: bash

   bin/crypt.cs

Remotely (as a service – Performer+Invoker)
-------------------------------------------

You can also run

Performer
~~~~~~~~~

Run performer as:

.. code:: bash

   bin/roPerf-crypt.cs

Invoker
~~~~~~~

Run invoker as:

.. code:: bash

   bin/roInv-crypt.cs

Use by Python script
--------------------

bisos.crypt Source Code is in writen in COMEEGA (Collaborative Org-Mode Enhanced Emacs Generalized Authorship) – https://github.com/bx-blee/comeega.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

The primary API for bisos.crypt is ./bisos/crypt/crypt-csu.py. It is self documented in COMEEGA.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Documentation and Blee-Panels
=============================

bisos.crypt is part of ByStar Digital Ecosystem http://www.by-star.net.

This module's primary documentation is in the form of Blee-Panels.
Additional information is also available in:
http://www.by-star.net/PLPC/180047

bisos.crypt Blee-Panels
-----------------------

bisos.crypt Blee-Panles are in ./panels directory. From within Blee and
BISOS these panles are accessible under the Blee "Panels" menu.

Support
=======

| For support, criticism, comments and questions; please contact the
  author/maintainer
| `Mohsen Banan <http://mohsen.1.banan.byname.net>`__ at:
  http://mohsen.1.banan.byname.net/contact

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "bisos.crypt",
    "maintainer": "Mohsen Banan",
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": "libre@mohsen.1.banan.byname.net",
    "keywords": null,
    "author": "Mohsen Banan",
    "author_email": "libre@mohsen.1.banan.byname.net",
    "download_url": "https://files.pythonhosted.org/packages/d7/3f/903451bfdde9de81441fd1b540936a1a01866468a729f7357a42188e82e2/bisos_crypt-0.15.tar.gz",
    "platform": null,
    "description": "===============================================================================================================================================\nbisos.crypt: BPO Based Encryption/Decryption Facilities that provide vault, symetric and PKCS encryption, decryption, and hashing capabilities.\n===============================================================================================================================================\n\n.. contents::\n   :depth: 3\n..\n\nOverview\n========\n\nbisos.crypt is a python package that uses the PyCS-Framework for NOTYET.\nIt is a BISOS-Capability and a Standalone-BISOS-Package.\n\n*bisos.crypt* is based on PyCS-Foundation and can be used both as a\nCommand and as a Service (invoke/perform model of remote operations)\nusing RPYC for central management of multiple systems.\n\n.. _table-of-contents:\n\nTable of Contents TOC\n=====================\n\n-  `Overview <#overview>`__\n-  `Part of BISOS \u2014 ByStar Internet Services Operating\n   System <#part-of-bisos-----bystar-internet-services-operating-system>`__\n-  `bisos.crypt is a Command Services (PyCS)\n   Facility <#bisoscrypt-is-a-command-services-pycs-facility>`__\n-  `Uses of bisos.crypt <#uses-of-bisoscrypt>`__\n-  `bisos.crypt as a Standalone Piece of\n   BISOS <#bisoscrypt-as-a-standalone-piece-of-bisos>`__\n-  `Installation <#installation>`__\n\n   -  `Installation With pip <#installation-with-pip>`__\n   -  `Installation With pipx <#installation-with-pipx>`__\n\n-  `Usage <#usage>`__\n\n   -  `Locally (system command-line) <#locally-system-command-line>`__\n   -  `Remotely (as a service \u2013\n      Performer+Invoker) <#remotely-as-a-service----performerinvoker>`__\n\n      -  `Performer <#performer>`__\n      -  `Invoker <#invoker>`__\n\n   -  `Use by Python script <#use-by-python-script>`__\n\n      -  `bisos.crypt Source Code is in writen in COMEEGA (Collaborative\n         Org-Mode Enhanced Emacs Generalized Authorship)\n         \u2013 <#bisoscrypt-source-code-is-in-writen-in-comeega-collaborative-org-mode-enhanced-emacs-generalized-authorship----httpsgithubcombx-bleecomeega>`__\\ https://github.com/bx-blee/comeega\\ `. <#bisoscrypt-source-code-is-in-writen-in-comeega-collaborative-org-mode-enhanced-emacs-generalized-authorship----httpsgithubcombx-bleecomeega>`__\n      -  `The primary API for bisos.crypt is ./bisos/crypt/crypt-csu.py.\n         It is self documented in\n         COMEEGA. <#the-primary-api-for-bisoscrypt-is-bisoscryptcrypt-csupy-it-is-self-documented-in-comeega>`__\n\n-  `Documentation and Blee-Panels <#documentation-and-blee-panels>`__\n\n   -  `bisos.crypt Blee-Panels <#bisoscrypt-blee-panels>`__\n\n-  `Support <#support>`__\n\nPart of BISOS \u2014 ByStar Internet Services Operating System\n=========================================================\n\n| Layered on top of Debian, **BISOS**: (By\\* Internet Services Operating\n  System) is a unified and universal framework for developing both\n  internet services and software-service continuums that use internet\n  services. See `Bootstrapping ByStar, BISOS and\n  Blee <https://github.com/bxGenesis/start>`__ for information about\n  getting started with BISOS.\n| **BISOS** is a foundation for **The Libre-Halaal ByStar Digital\n  Ecosystem** which is described as a cure for losses of autonomy and\n  privacy in a book titled: `Nature of\n  Polyexistentials <https://github.com/bxplpc/120033>`__\n\n*bisos.crypt* is part of BISOS.\n\nbisos.crypt is a Command Services (PyCS) Facility\n=================================================\n\nbisos.crypt can be used locally on command-line or remotely as a\nservice. bisos.crypt is a PyCS multi-unit command-service. PyCS is a\nframework that converges developement of CLI and Services. PyCS is an\nalternative to FastAPI, Typer and Click.\n\nbisos.crypt uses the PyCS Framework to:\n\n#. Provide access to crypt facilities through native python.\n#. Provide local access to crypt facilities on CLI.\n#. Provide remote access to crypt facilities through remote invocation\n   of python Expection Complete Operations using\n   `rpyc <https://github.com/tomerfiliba-org/rpyc>`__.\n#. Provide remote access to crypt facilities on CLI.\n\nWhat is unique in the PyCS-Framework is that these four models are all a\nsingle abstraction.\n\nThe core of PyCS-Framework is the *bisos.b* package (the\nPyCS-Foundation). See https://github.com/bisos-pip/b for an overview.\n\nUses of bisos.crypt\n===================\n\nWithin BISOS, bisos.crypt is used as a common facility.\n\nbisos.crypt as a Standalone Piece of BISOS\n==========================================\n\nbisos.crypt is a standalone piece of BISOS. It can be used as a\nself-contained Python package separate from BISOS. Follow the\ninstalltion and usage instructions below for your own use.\n\nInstallation\n============\n\nThe sources for the bisos.crypt pip package is maintained at:\nhttps://github.com/bisos-pip/crypt.\n\nThe bisos.crypt pip package is available at PYPI as\nhttps://pypi.org/project/bisos.crypt\n\nYou can install bisos.crypt with pip or pipx.\n\nInstallation With pip\n---------------------\n\nIf you need access to bisos.crypt as a python module, you can install it\nwith pip:\n\n.. code:: bash\n\n   pip install bisos.crypt\n\nInstallation With pipx\n----------------------\n\nIf you only need access to bisos.crypt as a command on command-line, you\ncan install it with pipx:\n\n.. code:: bash\n\n   pipx install bisos.crypt\n\nThe following commands are made available:\n\n-  crypt.cs\n-  roInv-crypt.cs\n-  roPerf-crypt.cs\n\nThese are all one file with 3 names. *roInv-crypt.cs* and\n*roPerf-crypt.cs* are sym-links to *crypt.cs*\n\nUsage\n=====\n\nLocally (system command-line)\n-----------------------------\n\n``crypt.cs`` can be invoked directly as\n\n.. code:: bash\n\n   bin/crypt.cs\n\nRemotely (as a service \u2013 Performer+Invoker)\n-------------------------------------------\n\nYou can also run\n\nPerformer\n~~~~~~~~~\n\nRun performer as:\n\n.. code:: bash\n\n   bin/roPerf-crypt.cs\n\nInvoker\n~~~~~~~\n\nRun invoker as:\n\n.. code:: bash\n\n   bin/roInv-crypt.cs\n\nUse by Python script\n--------------------\n\nbisos.crypt Source Code is in writen in COMEEGA (Collaborative Org-Mode Enhanced Emacs Generalized Authorship) \u2013 https://github.com/bx-blee/comeega.\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThe primary API for bisos.crypt is ./bisos/crypt/crypt-csu.py. It is self documented in COMEEGA.\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nDocumentation and Blee-Panels\n=============================\n\nbisos.crypt is part of ByStar Digital Ecosystem http://www.by-star.net.\n\nThis module's primary documentation is in the form of Blee-Panels.\nAdditional information is also available in:\nhttp://www.by-star.net/PLPC/180047\n\nbisos.crypt Blee-Panels\n-----------------------\n\nbisos.crypt Blee-Panles are in ./panels directory. From within Blee and\nBISOS these panles are accessible under the Blee \"Panels\" menu.\n\nSupport\n=======\n\n| For support, criticism, comments and questions; please contact the\n  author/maintainer\n| `Mohsen Banan <http://mohsen.1.banan.byname.net>`__ at:\n  http://mohsen.1.banan.byname.net/contact\n",
    "bugtrack_url": null,
    "license": "AGPL",
    "summary": "bisos.crypt:  BPO Based Encryption/Decryption Facilities that provide vault, symetric and PKCS encryption, decryption, and hashing capabilities.",
    "version": "0.15",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d73f903451bfdde9de81441fd1b540936a1a01866468a729f7357a42188e82e2",
                "md5": "e885467db679097b31ad1b865ad05c6d",
                "sha256": "12e538b8df8b595b01390781757ee868502e2250d6f7dff8bbd8818196ad41fd"
            },
            "downloads": -1,
            "filename": "bisos_crypt-0.15.tar.gz",
            "has_sig": false,
            "md5_digest": "e885467db679097b31ad1b865ad05c6d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 53359,
            "upload_time": "2025-02-18T03:26:35",
            "upload_time_iso_8601": "2025-02-18T03:26:35.822566Z",
            "url": "https://files.pythonhosted.org/packages/d7/3f/903451bfdde9de81441fd1b540936a1a01866468a729f7357a42188e82e2/bisos_crypt-0.15.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-18 03:26:35",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "bisos.crypt"
}
        
Elapsed time: 1.10048s