clightning-dumpkeys

dump clightning output descriptors
git clone git://jb55.com/clightning-dumpkeys
Log | Files | Refs | README | LICENSE

hash.h (254B)


      1 
      2 #ifndef HASH_H
      3 #define HASH_H
      4 
      5 #include <stdlib.h>
      6 
      7 /** Output length for `wally_hash160` */
      8 #define HASH160_LEN 20
      9 
     10 int hash160(const unsigned char *bytes, size_t bytes_len,
     11                   unsigned char *bytes_out, size_t len);
     12 
     13 #endif /* HASH_H */