選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

23 行
718 B

  1. // Copyright 2015 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build arm,!gccgo,!appengine,!nacl
  5. package poly1305
  6. // This function is implemented in sum_arm.s
  7. //go:noescape
  8. func poly1305_auth_armv6(out *[16]byte, m *byte, mlen uint32, key *[32]byte)
  9. // Sum generates an authenticator for m using a one-time key and puts the
  10. // 16-byte result into out. Authenticating two different messages with the same
  11. // key allows an attacker to forge messages at will.
  12. func Sum(out *[16]byte, m []byte, key *[32]byte) {
  13. var mPtr *byte
  14. if len(m) > 0 {
  15. mPtr = &m[0]
  16. }
  17. poly1305_auth_armv6(out, mPtr, uint32(len(m)), key)
  18. }