Skip to content
Snippets Groups Projects
Commit ff33f4cc authored by Philip Prindeville's avatar Philip Prindeville
Browse files

strongswan: handle chacha20poly1305 as AEAD


chacha20policy1305 is also an AEAD cipher, and hence does not
permit a hash algorithm.

Fixes issue #15397.

Signed-off-by: default avatarPhilip Prindeville <philipp@redfish-solutions.com>
parent c95fd699
No related branches found
No related tags found
1 merge request!13Uplift of packages using two step method. Use commits specified by feeds.conf.default from main repo.
......@@ -141,6 +141,8 @@ is_aead() {
case "$cipher" in
aes*gcm*|aes*ccm*|aes*gmac*)
return 0 ;;
chacha20poly1305)
return 0 ;;
esac
return 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment