You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
311 B
17 lines
311 B
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright (c) 2018 Oracle and/or its affiliates. All Rights Reserved.
|
|
*/
|
|
|
|
#ifndef TST_CHECKSUM_H__
|
|
#define TST_CHECKSUM_H__
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
/*
|
|
* Generates CRC32c checksum.
|
|
*/
|
|
uint32_t tst_crc32c(uint8_t *buf, size_t buf_len);
|
|
|
|
#endif
|