Bump version to 3.3.6
[kohana-core.git] / config / encrypt.php
blob3f9065e1911b36ecbd611d9e948608c22e7f10a1
1 <?php defined('SYSPATH') OR die('No direct script access.');
3 return array(
5 'default' => array(
6 /**
7 * The following options must be set:
9 * string key secret passphrase
10 * integer mode encryption mode, one of MCRYPT_MODE_*
11 * integer cipher encryption cipher, one of the Mcrpyt cipher constants
13 'cipher' => MCRYPT_RIJNDAEL_128,
14 'mode' => MCRYPT_MODE_NOFB,