Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

chacha20poly1305_noasm.go 539 B

123456789101112131415
  1. // Copyright 2016 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 !amd64 !go1.7 gccgo appengine
  5. package chacha20poly1305
  6. func (c *chacha20poly1305) seal(dst, nonce, plaintext, additionalData []byte) []byte {
  7. return c.sealGeneric(dst, nonce, plaintext, additionalData)
  8. }
  9. func (c *chacha20poly1305) open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error) {
  10. return c.openGeneric(dst, nonce, ciphertext, additionalData)
  11. }