- changed include paths
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
#ifndef CRYPTER_H_
|
||||
#define CRYPTER_H_
|
||||
|
||||
#include "../../payloads/transform_substructure.h"
|
||||
#include <payloads/transform_substructure.h>
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -27,10 +27,10 @@
|
||||
|
||||
#include "diffie_hellman.h"
|
||||
|
||||
#include "../payloads/transform_substructure.h"
|
||||
#include "../utils/allocator.h"
|
||||
#include "../utils/randomizer.h"
|
||||
#include "../utils/gmp_helper.h"
|
||||
#include <payloads/transform_substructure.h>
|
||||
#include <utils/allocator.h>
|
||||
#include <utils/randomizer.h>
|
||||
#include <utils/gmp_helper.h>
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
#ifndef DIFFIE_HELLMAN_H_
|
||||
#define DIFFIE_HELLMAN_H_
|
||||
|
||||
#include "../types.h"
|
||||
#include "../payloads/transform_substructure.h"
|
||||
#include <types.h>
|
||||
#include <payloads/transform_substructure.h>
|
||||
|
||||
/**
|
||||
* Object representing a diffie hellman exchange
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
|
||||
#include "hasher.h"
|
||||
|
||||
#include "hasher_sha1.h"
|
||||
#include "hasher_md5.h"
|
||||
#include <transforms/hashers/hasher_sha1.h>
|
||||
#include <transforms/hashers/hasher_md5.h>
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
#define HASHER_H_
|
||||
|
||||
|
||||
#include "../../types.h"
|
||||
#include <types.h>
|
||||
|
||||
/**
|
||||
* algorithms to use for hashing
|
||||
|
||||
@@ -28,8 +28,8 @@
|
||||
|
||||
#include "hasher_md5.h"
|
||||
|
||||
#include "../../definitions.h"
|
||||
#include "../../utils/allocator.h"
|
||||
#include <definitions.h>
|
||||
#include <utils/allocator.h>
|
||||
|
||||
#define BLOCK_SIZE_MD5 16
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
#ifndef HASHER_MD5_H_
|
||||
#define HASHER_MD5_H_
|
||||
|
||||
#include "hasher.h"
|
||||
#include <transforms/hashers/hasher.h>
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -26,8 +26,8 @@
|
||||
|
||||
#include "hasher_sha1.h"
|
||||
|
||||
#include "../../definitions.h"
|
||||
#include "../../utils/allocator.h"
|
||||
#include <definitions.h>
|
||||
#include <utils/allocator.h>
|
||||
|
||||
#define BLOCK_SIZE_SHA1 20
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
#ifndef HASHER_SHA1_H_
|
||||
#define HASHER_SHA1_H_
|
||||
|
||||
#include "hasher.h"
|
||||
#include <transforms/hashers/hasher.h>
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
|
||||
#include "hmac.h"
|
||||
|
||||
#include "../utils/allocator.h"
|
||||
#include <utils/allocator.h>
|
||||
|
||||
/**
|
||||
* Private data of an hmac_t object.
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
#define HMAC_H_
|
||||
|
||||
|
||||
#include "hashers/hasher.h"
|
||||
#include <transforms/hashers/hasher.h>
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
|
||||
#include "prf_plus.h"
|
||||
|
||||
#include "../utils/allocator.h"
|
||||
#include "../definitions.h"
|
||||
#include <utils/allocator.h>
|
||||
#include <definitions.h>
|
||||
|
||||
/**
|
||||
* Private data of an prf_plus_t object.
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
#define PRF_PLUS_H_
|
||||
|
||||
|
||||
#include "prfs/prf.h"
|
||||
#include <transforms/prfs/prf.h>
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
|
||||
#include "prf.h"
|
||||
|
||||
#include "prf_hmac.h"
|
||||
#include "../hashers/hasher.h"
|
||||
#include <transforms/hashers/hasher.h>
|
||||
#include <transforms/prfs/prf_hmac.h>
|
||||
|
||||
|
||||
/*
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
#ifndef PRF_H_
|
||||
#define PRF_H_
|
||||
|
||||
#include "../../payloads/transform_substructure.h"
|
||||
#include <payloads/transform_substructure.h>
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
|
||||
#include "prf_hmac.h"
|
||||
|
||||
#include "../../utils/allocator.h"
|
||||
#include "../hmac.h"
|
||||
#include <utils/allocator.h>
|
||||
#include <transforms/hmac.h>
|
||||
|
||||
typedef struct private_prf_hmac_s private_prf_hmac_t;
|
||||
|
||||
|
||||
@@ -26,8 +26,8 @@
|
||||
|
||||
#include "prf.h"
|
||||
|
||||
#include "../../types.h"
|
||||
#include "../hashers/hasher.h"
|
||||
#include <types.h>
|
||||
#include <transforms/hashers/hasher.h>
|
||||
|
||||
/**
|
||||
* Object representing a prf using HMAC
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
#ifndef SIGNER_H_
|
||||
#define SIGNER_H_
|
||||
|
||||
#include "../../payloads/transform_substructure.h"
|
||||
#include <payloads/transform_substructure.h>
|
||||
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user