Skip to content
View lord-max's full-sized avatar

Highlights

  • Pro

Block or report lord-max

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 Loading

  1. vault12/zax vault12/zax Public

    NaCl-based Cryptographic Relay

    Ruby 79 12

  2. vault12/TrueEntropy vault12/TrueEntropy Public

    High volume thermal entropy generator for iOS

    Swift 24 2

  3. BIP39 checksum word via console: whe... BIP39 checksum word via console: when generating BIP39 seed by hand, you will need this script to fix last 4 bits (12th word) with a correct checksum. Minified version with no comments and no error checks. Full version: https://gist.github.com/lord-max/74190d1a211720671e68d4789227b43f
    1
    function checksum_12_words_min(data) {
    2
      let binstr = (s,l =8) => s.toString(2).padStart(l,'0') // convert to binary `0011...` string
    3
      let tohex = (bytes) => bytes.map( x => x.toString(16).padStart(2,0) ).join('')                                  
    4
      let bytes = data.map( x => binstr(x - 1, 11)).join('').match(/.{1,8}/g).map( x => parseInt(x, 2))	
    5
      bytes.pop(); console.log("Entropy is :",tohex(bytes))  
  4. vault12/zax-dashboard vault12/zax-dashboard Public

    Sample dashboard app for Zax Cryptographic Relay

    TypeScript 4 1