Difference between revisions of "Zlib.crc32"

From GiderosMobile
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''Available since:''' Gideros 2015.04.18<br/>
+
'''<translate>Available since</translate>:''' Gideros 2015.04.18<br/>
=== Description ===
+
=== <translate>Description</translate> ===
 
<translate>Without any parameters, returns the inicial crc32 value.
 
<translate>Without any parameters, returns the inicial crc32 value.
 
Call to update the crc32 value, crc is the current value, buffer is passed to crc32 zlib function and the updated value is returned.</translate>
 
Call to update the crc32 value, crc is the current value, buffer is passed to crc32 zlib function and the updated value is returned.</translate>
Line 7: Line 7:
 
(string) = zlib.crc32(crc32,buffer)
 
(string) = zlib.crc32(crc32,buffer)
 
</source>
 
</source>
=== Parameters ===
+
=== <translate>Parameters</translate> ===
 
'''crc32''': (number) <translate>crc32 value</translate> '''optional'''<br/>
 
'''crc32''': (number) <translate>crc32 value</translate> '''optional'''<br/>
 
'''buffer''': (string) <translate>buffer to modify value</translate> '''optional'''<br/>
 
'''buffer''': (string) <translate>buffer to modify value</translate> '''optional'''<br/>
=== Return values ===
+
=== <translate>Return values</translate> ===
'''Returns''' (string) <translate>without parameters returns initial value</translate><br/>
+
'''<translate>Returns</translate>''' (string) <translate>without parameters returns initial value</translate><br/>

Revision as of 08:28, 24 August 2018

Available since: Gideros 2015.04.18

Description

Without any parameters, returns the inicial crc32 value. Call to update the crc32 value, crc is the current value, buffer is passed to crc32 zlib function and the updated value is returned.

(string) = zlib.crc32(crc32,buffer)

Parameters

crc32: (number) crc32 value optional
buffer: (string) buffer to modify value optional

Return values

Returns (string) without parameters returns initial value