-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
7,953 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"terminal.integrated.env.osx": { | ||
"PATH" : "/opt/homebrew/opt/binutils/bin/:/opt/homebrew/opt/llvm/bin:${env:PATH}", | ||
"LDFLAGS" : "-L/opt/homebrew/opt/llvm/lib", | ||
"CPPFLAGS": "-I/opt/homebrew/opt/llvm/include", | ||
}, | ||
"terminal.integrated.env.linux": { | ||
"PATH" : "/opt/homebrew/opt/binutils/bin/:/opt/homebrew/opt/llvm/bin:${env:PATH}", | ||
"LDFLAGS" : "-L/opt/homebrew/opt/llvm/lib", | ||
"CPPFLAGS": "-I/opt/homebrew/opt/llvm/include", | ||
}, | ||
"files.associations": { | ||
"*.py": "python", | ||
"*.js": "javascript", | ||
"*.rmd": "markdown", | ||
"__config": "c", | ||
"emmintrin.h": "c" | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//go:build amd64 && gc && !purego | ||
|
||
package lea | ||
|
||
import "unsafe" | ||
|
||
//go:noescape | ||
func __lea_set_key_generic(rk, round, mk unsafe.Pointer, mk_len uint64) | ||
Check failure on line 8 in lea/amd64_c2goasm/lea_init.go GitHub Actions / test_arm64
|
||
|
||
//go:noescape | ||
func __lea_encrypt(ct, pt, rk unsafe.Pointer, round uint64) | ||
Check failure on line 11 in lea/amd64_c2goasm/lea_init.go GitHub Actions / test_arm64
|
||
|
||
//go:noescape | ||
func __lea_decrypt(pt, ct, rk unsafe.Pointer, round uint64) | ||
Check failure on line 14 in lea/amd64_c2goasm/lea_init.go GitHub Actions / test_arm64
|
Oops, something went wrong.