https://github.com/CryptDB/cryptdb
Raw File
Tip revision: 7678bc98d3054f1418371779c6d1050cd1a88b2e authored by Raluca Ada Popa on 04 January 2014, 01:31:06 UTC
small changes to readme
Tip revision: 7678bc9
params.hh
#pragma once

/*
 *  config.h
 *
 *  Configuration parameters.
 *
 */

// if this bit is set, we are working with MySQL, else we are working with
// Postgres
#define MYSQL_S 1

/************* EVAL/DEBUGGING FLAGS ************/

//Flags for evaluation of different scenarios:
#define PARSING 0
//strawman where values are decrypted on the fly before being used
#define DECRYPTFIRST 0

#define ASSERTS_ON true


/******* VERBOSITY ****************/

//flag for debugging, particularly verbose
const bool VERBOSE_G = false;

const bool VERBOSE_KEYACCESS = true;
const bool VERBOSE_EDBProxy = true;
const bool VERBOSE_EDBProxy_VERY = true;
back to top