added methods to get files from hash(hash) in directory_storage and ftServer

This commit is contained in:
mr-alice 2016-10-25 00:08:27 +02:00
parent 2d72b88130
commit 0387a28e78
9 changed files with 122 additions and 44 deletions

View file

@ -33,6 +33,8 @@
#include <iostream>
#include <stdlib.h>
#include "crypto/chacha20.h"
#pragma once
#define rotl(x,n) { x = (x << n) | (x >> (-n & 31)) ;}