Skip to content

Commit

Permalink
Fixed spelling of crypto_aead_aes256gcm_is_available
Browse files Browse the repository at this point in the history
  • Loading branch information
neuegram committed Nov 3, 2015
1 parent d980dc8 commit 60b2010
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cryptoaead/crypto_aead_aes256gcm.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func CryptoAEADAES256GCMStateBytes() int {
}

func CryptoAESAES256GCMIsAvailable() int {
return int(C.crypto_aes_aes256gcm_is_available())
return int(C.crypto_aead_aes256gcm_is_available())
}

func CryptoAEADAES256GCMEncrypt(m []byte, ad []byte, nsec []byte, npub []byte, k []byte) ([]byte, int) {
Expand Down

0 comments on commit 60b2010

Please sign in to comment.