dousao8152 2017-06-20 08:58
浏览 263
已采纳

如何在Golang中使用在汇编代码中定义的函数?

In golangs AES crypto package cipher_amd64.go makes use of functions that are defined in assembler code (asm_amd64.s). In the mentioned go file only the function headers are defined:

// defined in asm_amd64.s
func encryptBlockAsm(nr int, xk *uint32, dst, src *byte)
func decryptBlockAsm(nr int, xk *uint32, dst, src *byte)
func expandKeyAsm(nr int, key *byte, enc *uint32, dec *uint32)

How can I use these functions in my own code? Just declaring the headers and importing "crypto/aes" as in the mentioned .go file does not work (undefined: expandKeyAsm).

Thank you very much!

  • 写回答

1条回答 默认 最新

  • doubengman2072 2017-06-20 10:47
    关注
    1. Copy the asm_amd64.s contents over to your package
    2. Define the functions somewehere in that package
    3. Use those functions in the package

    Example (with the asm_amd64.s in the same package):

    package main
    
    import "fmt"
    
    func encryptBlockAsm(nr int, xk *uint32, dst, src *byte)
    func decryptBlockAsm(nr int, xk *uint32, dst, src *byte)
    func expandKeyAsm(nr int, key *byte, enc *uint32, dec *uint32)
    
    func main() {
        var nr int
        var xk uint32
        var dst byte
        var src byte
    
        fmt.Printf("Before:\t%v, %v, %v, %v
    ", nr, xk, dst, src)
    
        encryptBlockAsm(nr, &xk, &dst, &src)
    
        fmt.Printf("After:\t%v, %v, %v, %v
    ", nr, xk, dst, src)
    }
    

    Yields:

    Before: 0, 0, 0, 0
    After:  0, 0, 231, 173
    

    I have no idea what the inputs should be but at least it demonstrates this does something :)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 交替优化波束形成和ris反射角使保密速率最大化
  • ¥15 树莓派与pix飞控通信
  • ¥15 自动转发微信群信息到另外一个微信群
  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程