function hash(algorithm, str)
{
	var hashstr;
	switch (algorithm)
	{
		case 'sha256':
			hashstr = hex_sha256(str);
			break;
	}
	return hashstr;
}
