summaryrefslogtreecommitdiff
path: root/include/ouroboros/crc32.h
diff options
context:
space:
mode:
authordimitri staessens <dimitri.staessens@intec.ugent.be>2017-01-14 12:19:01 +0100
committerdimitri staessens <dimitri.staessens@intec.ugent.be>2017-01-14 12:19:01 +0100
commitc18011259423f5d1cea7dfa67093c888c4882c1e (patch)
tree9afdc7de2c7a4db305ca30aa2b6eb7891f96a528 /include/ouroboros/crc32.h
parent6a8f0d0a9aab073e2e79a06322e4f83e69409d05 (diff)
downloadouroboros-c18011259423f5d1cea7dfa67093c888c4882c1e.tar.gz
ouroboros-c18011259423f5d1cea7dfa67093c888c4882c1e.zip
lib: Move CRC32 implementation to library
The CRC32 implementation will be used to ID objects in the RIB.
Diffstat (limited to 'include/ouroboros/crc32.h')
-rw-r--r--include/ouroboros/crc32.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/include/ouroboros/crc32.h b/include/ouroboros/crc32.h
new file mode 100644
index 00000000..3c7721de
--- /dev/null
+++ b/include/ouroboros/crc32.h
@@ -0,0 +1,33 @@
+/*
+ * Ouroboros - Copyright (C) 2016 - 2017
+ *
+ * 32-bit Cyclic Redundancy Check
+ *
+ * Sander Vrijders <sander.vrijders@intec.ugent.be>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301 USA
+ */
+
+#ifndef OUROBOROS_CRC32_H
+#define OUROBOROS_CRC32_H
+
+#include <stdint.h>
+#include <stddef.h>
+
+void crc32(uint32_t * crc,
+ const void * buf,
+ size_t len);
+
+#endif /* OUROBOROS_CRC32_H */