update Makefile

This commit is contained in:
Wade Simmons
2026-05-01 14:13:38 -04:00
parent 441a67fbf9
commit a1b8954a23
2 changed files with 22 additions and 1 deletions

View File

@@ -25,7 +25,7 @@ func NewNebulaCipherState(s *noise.CipherState) *NebulaCipherState {
type cipherAEADDanger interface {
EncryptDanger(out, ad, plaintext []byte, n uint64, nb []byte) ([]byte, error)
DecryptDanger(out, ad, plaintext []byte, n uint64, nb []byte) ([]byte, error)
DecryptDanger(out, ad, ciphertext []byte, n uint64, nb []byte) ([]byte, error)
}
// EncryptDanger encrypts and authenticates a given payload.