Ejemplo n.º 1
0
 public function __construct(array $options = array())
 {
     $options += array('kdf' => null, 'random' => null);
     if (is_null($options['kdf'])) {
         $factory = new KeyFactory();
         $options['kdf'] = $factory->getKdf('kdf3');
     }
     $this->kdf = $options['kdf'];
     if (is_null($options['random'])) {
         $options['random'] = new RandomFactory();
     }
     $this->random = $options['random'];
 }