Skip to content
View yann2192's full-sized avatar
Block or Report

Block or report yann2192

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. pyelliptic pyelliptic Public archive

    Python OpenSSL wrapper. For modern cryptography with ECC, AES, HMAC, Blowfish, ...

    Python 126 61

  2. Hardening USB Armory Hardening USB Armory
    1
    # Hardening the USB Armory
    2
    
                  
    3
    As a good crypto nerd, I usually use an entirely encrypted linux FS: `/` but also
    4
    `/boot` using grub LUKS support. It's a good setup but it's not perfect, the BIOS and
    5
    the bootloader are not protected.
  3. xssh xssh Public

    One ssh shell for multiple hosts

    Python 1 1

  4. Incremental backup using btrfs snapshot Incremental backup using btrfs snapshot
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    DEVICE=UUID="2b387045-9c35-4da0-8ed2-79014eb85040"
    4
    BACKUP_DEVICE="dde"
    5
    BACKUP_MOUNT="/mnt"
  5. Parse YAML to decrypt ansible-vault ... Parse YAML to decrypt ansible-vault encrypted string or encrypt standard string using ansible-vault
    1
    import subprocess
    2
    import sys
    3
    
                  
    4
    import yaml
    5