VirtualBox

source: vbox/trunk/include/iprt/crc64.h@ 5999

Last change on this file since 5999 was 5999, checked in by vboxsync, 16 years ago

The Giant CDDL Dual-License Header Change.

File size: 2.1 KB
Line 
1/** @file
2 * innotek Portable Runtime - CRC64.
3 */
4
5/*
6 * Copyright (C) 2006-2007 innotek GmbH
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_crc64_h
27#define ___iprt_crc64_h
28
29
30#include <iprt/cdefs.h>
31#include <iprt/types.h>
32
33
34__BEGIN_DECLS
35
36/** @defgroup grp_rt_crc64 RTCrc64 - CRC64 Calculation
37 * @ingroup grp_rt
38 * @{
39 */
40
41/**
42 * Calculate CRC64 for a memory block.
43 *
44 * @returns CRC64 for the memory block.
45 * @param pv Pointer to the memory block.
46 * @param cb Size of the memory block in bytes.
47 */
48RTDECL(uint64_t) RTCrc64(const void *pv, size_t cb);
49
50/**
51 * Start a multiblock CRC64 calculation.
52 *
53 * @returns Start CRC64.
54 */
55RTDECL(uint64_t) RTCrc64Start(void);
56
57/**
58 * Processes a multiblock of a CRC64 calculation.
59 *
60 * @returns Intermediate CRC64 value.
61 * @param uCRC64 Current CRC64 intermediate value.
62 * @param pv The data block to process.
63 * @param cb The size of the data block in bytes.
64 */
65RTDECL(uint64_t) RTCrc64Process(uint64_t uCRC64, const void *pv, size_t cb);
66
67/**
68 * Complete a multiblock CRC64 calculation.
69 *
70 * @returns CRC64 value.
71 * @param uCRC64 Current CRC64 intermediate value.
72 */
73RTDECL(uint64_t) RTCrc64Finish(uint64_t uCRC64);
74
75
76
77/** @} */
78
79__END_DECLS
80
81#endif
82
83
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use