This commit is contained in:
4
vendor/github.com/pjbgf/sha1cd/ubc/ubc_amd64.go
generated
vendored
4
vendor/github.com/pjbgf/sha1cd/ubc/ubc_amd64.go
generated
vendored
@ -1,5 +1,5 @@
|
||||
//go:build !noasm && gc && amd64
|
||||
// +build !noasm,gc,amd64
|
||||
//go:build !noasm && gc && amd64 && !arm64
|
||||
// +build !noasm,gc,amd64,!arm64
|
||||
|
||||
package ubc
|
||||
|
||||
|
2
vendor/github.com/pjbgf/sha1cd/ubc/ubc_amd64.s
generated
vendored
2
vendor/github.com/pjbgf/sha1cd/ubc/ubc_amd64.s
generated
vendored
@ -1,6 +1,6 @@
|
||||
// Code generated by command: go run asm.go -out ../ubc_amd64.s -pkg ubc. DO NOT EDIT.
|
||||
|
||||
//go:build !noasm && gc && amd64
|
||||
//go:build !noasm && gc && amd64 && !arm64
|
||||
|
||||
#include "textflag.h"
|
||||
|
||||
|
13
vendor/github.com/pjbgf/sha1cd/ubc/ubc_arm64.go
generated
vendored
Normal file
13
vendor/github.com/pjbgf/sha1cd/ubc/ubc_arm64.go
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
//go:build !noasm && gc && arm64 && !amd64
|
||||
// +build !noasm,gc,arm64,!amd64
|
||||
|
||||
package ubc
|
||||
|
||||
func CalculateDvMaskARM64(W [80]uint32) uint32
|
||||
|
||||
// Check takes as input an expanded message block and verifies the unavoidable
|
||||
// bitconditions for all listed DVs. It returns a dvmask where each bit belonging
|
||||
// to a DV is set if all unavoidable bitconditions for that DV have been met.
|
||||
func CalculateDvMask(W [80]uint32) uint32 {
|
||||
return CalculateDvMaskARM64(W)
|
||||
}
|
1851
vendor/github.com/pjbgf/sha1cd/ubc/ubc_arm64.s
generated
vendored
Normal file
1851
vendor/github.com/pjbgf/sha1cd/ubc/ubc_arm64.s
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
4
vendor/github.com/pjbgf/sha1cd/ubc/ubc_noasm.go
generated
vendored
4
vendor/github.com/pjbgf/sha1cd/ubc/ubc_noasm.go
generated
vendored
@ -1,5 +1,5 @@
|
||||
//go:build !amd64 || noasm || !gc
|
||||
// +build !amd64 noasm !gc
|
||||
//go:build (!amd64 && !arm64) || noasm || !gc
|
||||
// +build !amd64,!arm64 noasm !gc
|
||||
|
||||
package ubc
|
||||
|
||||
|
Reference in New Issue
Block a user