added files

This commit is contained in:
Ian Christensen
2019-06-27 08:19:59 -07:00
parent ca320c6105
commit 6822968785
435 changed files with 123352 additions and 0 deletions

View File

@ -0,0 +1,44 @@
<?php
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Password
{
public function __construct()
{
$this->CI =& get_instance();
//$this->CI->load->library('encrypt');
}
public function encrypt_password($password){
$key = 'swebin';
$key2 = 'sosp@$%Ck';
$string = $password;
$output = false;
$encrypt_method = "AES-256-CBC";
$key = hash( 'sha256', $key );
$iv = substr( hash( 'sha256', $key2 ), 0, 16 );
$output = base64_encode( openssl_encrypt( $string, $encrypt_method, $key, 0, $iv ) );