tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

fe_1.c (170B)


      1 #include "fe.h"
      2 
      3 /*
      4 h = 1
      5 */
      6 
      7 void fe_1(fe h)
      8 {
      9  h[0] = 1;
     10  h[1] = 0;
     11  h[2] = 0;
     12  h[3] = 0;
     13  h[4] = 0;
     14  h[5] = 0;
     15  h[6] = 0;
     16  h[7] = 0;
     17  h[8] = 0;
     18  h[9] = 0;
     19 }