Skip to content

Instantly share code, notes, and snippets.

@shoghicp
Created October 28, 2012 15:02
Show Gist options
  • Save shoghicp/3968829 to your computer and use it in GitHub Desktop.
Save shoghicp/3968829 to your computer and use it in GitHub Desktop.
protected function _shiftIV($IV, $str){ //Only for CFB
if(strlen($str) < 16){
$len = min($this->IVLenght, strlen($str));
return substr($IV, $len).substr($str, -$len);
}
return substr($str, -$this->IVLenght);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment