Source file src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_noasm.go
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 5 //go:build !amd64 || !gc || purego 6 // +build !amd64 !gc purego 7 8 package chacha20poly1305 9 10 func (c *chacha20poly1305) seal(dst, nonce, plaintext, additionalData []byte) []byte { 11 return c.sealGeneric(dst, nonce, plaintext, additionalData) 12 } 13 14 func (c *chacha20poly1305) open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error) { 15 return c.openGeneric(dst, nonce, ciphertext, additionalData) 16 } 17