hash/ | |
License | Copyright © 2007-2011, FreeBASIC Extended Library Development Group |
ext. | |
High Level API | |
Functions | |
checksum | |
checksum | |
checksum |
Copyright © 2007-2011, FreeBASIC Extended Library Development Group
Copyright © 2005, 2007 Olivier Gay <olivier.email target=”gay@a3.epfl” name=”gay@a3.epfl”.ch>
Distributed under the FreeBASIC Extended Library Group license. See accompanying file LICENSE.txt or copy at http://code.google.com
declare function checksum ( byref x as ext.File, byval keylen as uinteger = 256, byval blocksize as uinteger = 1048576 ) as string
x | File containing the data you wish to retrieve the checksum of. |
keylen | the length of the key you wish to calculate, defaults to 256. |
blocksize | (Optional) size of data to read from disk. |
declare function checksum ( byval x as any ptr, byval nbytes as uinteger, byval keylen as uinteger = 256 ) as string
x | pointer containing the data you wish to retrieve the checksum of. |
nbytes | the number of bytes that can be read from x. |
keylen | the length of the key you wish to calculate, defaults to 256. |
declare function checksum overload ( byref x as string, byval keylen as uinteger = 256 ) as string