diff options
author | Andreas Gohr <andi@splitbrain.org> | 2013-07-31 11:07:32 -0700 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-07-31 11:07:32 -0700 |
commit | 96e3411f2e5895f9aa3eff5db58f0ed3e6183471 (patch) | |
tree | b55b5905c1a10e97519bf7768f48fcdb2e7e2503 /inc/phpseclib/update.sh | |
parent | 07ff0babae240ba072a3bc8b83a989c4305c24cd (diff) | |
parent | 7b650cef79bb603087a8ef43b22a1f7c3d86b7ef (diff) | |
download | rpg-96e3411f2e5895f9aa3eff5db58f0ed3e6183471.tar.gz rpg-96e3411f2e5895f9aa3eff5db58f0ed3e6183471.tar.bz2 |
Merge pull request #242 from splitbrain/aes_prng
Add AES encryption and better random numbers FS#2685
Diffstat (limited to 'inc/phpseclib/update.sh')
-rwxr-xr-x | inc/phpseclib/update.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/inc/phpseclib/update.sh b/inc/phpseclib/update.sh new file mode 100755 index 000000000..ff3747a14 --- /dev/null +++ b/inc/phpseclib/update.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +wget -nv https://raw.github.com/phpseclib/phpseclib/master/LICENSE -O LICENSE +wget -nv https://raw.github.com/phpseclib/phpseclib/master/phpseclib/Math/BigInteger.php -O Math_BigInteger.php +wget -nv https://raw.github.com/phpseclib/phpseclib/master/phpseclib/Crypt/AES.php -O Crypt_AES.php +wget -nv https://raw.github.com/phpseclib/phpseclib/master/phpseclib/Crypt/Rijndael.php -O Crypt_Rijndael.php +wget -nv https://raw.github.com/phpseclib/phpseclib/master/phpseclib/Crypt/Base.php -O Crypt_Base.php +wget -nv https://raw.github.com/phpseclib/phpseclib/master/phpseclib/Crypt/Hash.php -O Crypt_Hash.php |