CodeIgniter uses MD5 or SHA1 to hash it:
$str = do_hash($str); // SHA1 $str = do_hash($str, 'md5'); // MD5
But my project requires SHA-256. How can i solve this?
Can't you just call your own hash ()?
$str = hash ( "sha256", $str );
Source: https://habr.com/ru/post/1792532/More articles:Can all programs be converted to assembly? - assemblyContacts such as ListView - androidHow to add custom VariableResolver in JSP Context in Jsp 2.0 to support custom EL? - javaAssigning an empty binary value to a varbinary (MAX) column creates a column with a length of 8000 bytes - sqlhttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1792531/should-i-null-references-to-activity-context-when-my-activity-finishes&usg=ALkJrhh-pglcYAozrNntXux_MT2wTms_kgAdd postbuild event in nuget package - dllis there any tutorial for calling a web service in android via ksoap 2.5.4? - android-ksoap2Where does VisualStudio store regions? - visual-studioRuby on Rails - truncating a specific line - ruby | fooobar.comJavascript: does it create a string with a new value? Do I need to release it later? - javascriptAll Articles