#identities #identity #key #default #name #complete #secret-key

pijul-identity

Functionality to interact with Pijul identities

1 unstable release

0.0.1 Feb 7, 2024

#10 in #identities

Download history 26/week @ 2024-02-02 50/week @ 2024-02-09 84/week @ 2024-02-16 138/week @ 2024-02-23 56/week @ 2024-03-01 37/week @ 2024-03-08 21/week @ 2024-03-15 22/week @ 2024-03-22 64/week @ 2024-03-29 48/week @ 2024-04-05

158 downloads per month
Used in pijul-remote

GPL-2.0 license

84KB
2K SLoC

Complete identity management.

Pijul uses keys, rather than personal details such as names or emails to attribute changes. The user can have multiple identities on disk, each with completely unique details. For more information see the manual.

This module implements various functionality useful for managing identities on disk. The current format for storing identities is as follows:

.config/pijul/ (or applicable global config directory)
├── config.toml (global defaults)
│   ├── Username
│   ├── Full name
│   └── Email
└── identities/
    └── <IDENTITY NAME>/
        ├── identity.toml
        │   ├── Username
        │   ├── Full name
        │   ├── Email
        │   └── Public key
        │       ├── Version
        │       ├── Algorithm
        │       ├── Key
        │       └── Signature
        └── secret_key.json
            ├── Version
            ├── Algorithm
            └── Key

Dependencies

~43–58MB
~874K SLoC