go-randomx/asm/aes_noasm.go
DataHoarder 14a10f544f
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Support x86_64 aesenc/aesdec and roundtrip mode
2024-04-18 11:38:55 +02:00

12 lines
213 B
Go

//go:build !amd64 || purego
package asm
func AESRoundEncrypt(state *[4]uint32, key *[4]uint32) {
panic("not implemented")
}
func AESRoundDecrypt(state *[4]uint32, key *[4]uint32) {
panic("not implemented")
}