Interface User

Interface representing a user

interface User {
    gid: number;
    groups: number[];
    home: string;
    keypair?: { privateKey?: string | JsonWebKey; publicKey: JsonWebKey };
    password: string;
    shell: string;
    uid: number;
    username: string;
}

Properties

gid: number

Group ID

groups: number[]

Additional Groups

home: string

Home directory path

keypair?: { privateKey?: string | JsonWebKey; publicKey: JsonWebKey }

Optional keypair for authentication

Type declaration

  • OptionalprivateKey?: string | JsonWebKey

    Private key (may be encrypted)

  • publicKey: JsonWebKey

    Public key

password: string

Password hash

shell: string

Shell path

uid: number

User ID

username: string

Username