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

Block or report thibmeu

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. tlock-rs tlock-rs Public

    Rust encryption library for practical time-lock encryption.

    Rust 21

  2. drand-rs drand-rs Public

    Implementation of a drand client in Rust

    Rust 19 4

  3. age-plugin-simplepq age-plugin-simplepq Public

    Simple Post Quantum plugin for age

    Rust 4

  4. age-plugin-hpke age-plugin-hpke Public

    Rust 2

  5. Uint8Array helper for encoding and d... Uint8Array helper for encoding and decoding, similar to Node.js `Buffer`
    1
    // Helper methods
    2
    const hex_decode = (s) =>
    3
      Uint8Array.from(s.match(/.{1,2}/g).map((b) => parseInt(b, 16)));
    4
    
                  
    5
    const hex_encode = (u) =>