many changes in layout, addition of mbedtls library for RSA encryption.

This commit is contained in:
jmjatlanta 2016-10-31 11:13:42 -05:00
parent 9c309ebbc6
commit e1c1a7ffbf
174 changed files with 87855 additions and 67 deletions

View file

@ -0,0 +1,19 @@
//
// test_repo_config.h
// c-ipfs
//
// Created by John Jones on 10/31/16.
// Copyright © 2016 JMJAtlanta. All rights reserved.
//
#ifndef test_repo_config_h
#define test_repo_config_h
#include "ipfs/repo/config/identity.h"
int test_repo_config_identity_new() {
struct Identity* identity;
return repo_config_identity_new(identity, 2046);
}
#endif /* test_repo_config_h */