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.
24 lines
397 B
24 lines
397 B
10 years ago
|
// +build linux,amd64
|
||
|
|
||
|
package crc32c
|
||
|
|
||
|
// #include "crc32c.h"
|
||
|
import "C"
|
||
|
import (
|
||
|
"errors"
|
||
|
"unsafe"
|
||
|
)
|
||
|
|
||
|
func Crc32c(buffer []byte) (uint32, error) {
|
||
|
var length = len(buffer)
|
||
|
if length == 0 {
|
||
|
return 0, errors.New("Invalid input")
|
||
|
}
|
||
|
|
||
|
var cbuf *C.uint8_t
|
||
|
cbuf = (*C.uint8_t)(unsafe.Pointer(&buffer[0]))
|
||
|
crc := C.crc32c_pcl(cbuf, C.int32_t(length), C.uint32_t(0))
|
||
|
|
||
|
return uint32(crc), nil
|
||
|
}
|