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.
10 lines
268 B
10 lines
268 B
10 years ago
|
// +build amd64
|
||
|
|
||
|
package sha512
|
||
|
|
||
|
// #include <stdint.h>
|
||
|
// void sha512_transform_avx(const void* M, void* D, uint64_t L);
|
||
|
// void sha512_transform_ssse3(const void* M, void* D, uint64_t L);
|
||
|
// void sha512_transform_rorx(const void* M, void* D, uint64_t L);
|
||
|
import "C"
|