diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2015-12-18 15:08:33 +0100 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2015-12-18 15:08:33 +0100 |
commit | f553aea2c24d57af47c3bb0bd707decc0f3c287e (patch) | |
tree | f14c7743e367d8b5ca44e4c882a3100057806712 /src | |
parent | a073e4c95e15893eeb27d5ef9d9fabc83c281533 (diff) | |
download | strongswan-f553aea2c24d57af47c3bb0bd707decc0f3c287e.tar.bz2 strongswan-f553aea2c24d57af47c3bb0bd707decc0f3c287e.tar.xz |
Use 128 bit security in README.pod examples
Diffstat (limited to 'src')
-rw-r--r-- | src/libcharon/plugins/vici/perl/Vici-Session/README.pod | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libcharon/plugins/vici/perl/Vici-Session/README.pod b/src/libcharon/plugins/vici/perl/Vici-Session/README.pod index de73a03f8..de374aa11 100644 --- a/src/libcharon/plugins/vici/perl/Vici-Session/README.pod +++ b/src/libcharon/plugins/vici/perl/Vici-Session/README.pod @@ -242,7 +242,7 @@ with the same name gets updated or replaced. my @l_ts = ( '10.1.0.0/16' ); my @r_ts = ( '10.2.0.0/16' ); - my @esp = ( 'aes128gcm128-modp2048' ); + my @esp = ( 'aes128gcm128-modp3072' ); my %child = ( local_ts => \@l_ts, @@ -257,7 +257,7 @@ with the same name gets updated or replaced. my %l = ( auth => 'pubkey', id => 'moon.strongswan.org', certs => \@l_certs ); my %r = ( auth => 'pubkey', id => 'sun.strongswan.org'); - my @ike = ( 'aes128-sha256-modp2048' ); + my @ike = ( 'aes128-sha256-modp3072' ); my %gw = ( version => 2, @@ -278,7 +278,7 @@ with the same name gets updated or replaced. print "----- load-conn -----\n"; my @l_ts = ( '10.1.0.0/16' ); my @r_ts = ( '10.2.0.0/16' ); -my @esp = ( 'aes128gcm128-modp2048' ); +my @esp = ( 'aes128gcm128-modp3072' ); my %child = ( local_ts => \@l_ts, remote_ts => \@r_ts, @@ -290,7 +290,7 @@ my @r_addrs = ( '192.168.0.2' ); my @l_certs = ( $moon_cert ); my %l = ( auth => 'pubkey', id => 'moon.strongswan.org', certs => \@l_certs ); my %r = ( auth => 'pubkey', id => 'sun.strongswan.org'); -my @ike = ( 'aes128-sha256-modp2048' ); +my @ike = ( 'aes128-sha256-modp3072' ); my %gw = ( version => 2, mobike => 'no', |