00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #include "db_config.h"
00011
00012 #include "db_int.h"
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 int
00026 __crypto_region_init(dbenv)
00027 DB_ENV *dbenv;
00028 {
00029 REGENV *renv;
00030 REGINFO *infop;
00031 int ret;
00032
00033 infop = dbenv->reginfo;
00034 renv = infop->primary;
00035 MUTEX_LOCK(dbenv, renv->mtx_regenv);
00036 ret = !(renv->cipher_off == INVALID_ROFF);
00037 MUTEX_UNLOCK(dbenv, renv->mtx_regenv);
00038
00039 if (ret == 0)
00040 return (0);
00041
00042 __db_err(dbenv,
00043 "Encrypted environment: library build did not include cryptography support");
00044 return (DB_OPNOTSUP);
00045 }