Skip to content
View jesuscast's full-sized avatar

Block or report jesuscast

Report abuse

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

Report abuse

Pinned Loading

  1. keypair_generation.py keypair_generation.py
    1
    from nacl.signing import SigningKey, VerifyKey
    2
    import base64
    3
    import bcrypt
    4
    
                  
    5
    class HashValidationError(Exception):
  2. Simple Utility to resolve an array o... Simple Utility to resolve an array of promises in series.
    1
    function promiseReducer(arrayOfPromiseHolders, resolve, reject) {
    2
      if (arrayOfPromiseHolders.length > 0) {
    3
        const promiseHolder = arrayOfPromiseHolders.shift();
    4
        promiseHolder().then(() => {
    5
          promiseReducer(arrayOfPromiseHolders, resolve, reject);