wp/wp-includes/sodium_compat/composer.json
changeset 9 177826044cd9
child 16 a86126ab1dd4
equal deleted inserted replaced
8:c7c34916027a 9:177826044cd9
       
     1 {
       
     2   "name": "paragonie/sodium_compat",
       
     3   "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
       
     4   "keywords": [
       
     5     "PHP",
       
     6     "cryptography",
       
     7     "elliptic curve",
       
     8     "elliptic curve cryptography",
       
     9     "Pure-PHP cryptography",
       
    10     "side-channel resistant",
       
    11     "Curve25519",
       
    12     "X25519",
       
    13     "ECDH",
       
    14     "Elliptic Curve Diffie-Hellman",
       
    15     "Ed25519",
       
    16     "RFC 7748",
       
    17     "RFC 8032",
       
    18     "EdDSA",
       
    19     "Edwards-curve Digital Signature Algorithm",
       
    20     "ChaCha20",
       
    21     "Salsa20",
       
    22     "Xchacha20",
       
    23     "Xsalsa20",
       
    24     "Poly1305",
       
    25     "BLAKE2b",
       
    26     "public-key cryptography",
       
    27     "secret-key cryptography",
       
    28     "AEAD",
       
    29     "Chapoly",
       
    30     "Salpoly",
       
    31     "ChaCha20-Poly1305",
       
    32     "XSalsa20-Poly1305",
       
    33     "XChaCha20-Poly1305",
       
    34     "encryption",
       
    35     "authentication",
       
    36     "libsodium"
       
    37   ],
       
    38   "license": "ISC",
       
    39   "authors": [
       
    40     {
       
    41       "name": "Paragon Initiative Enterprises",
       
    42       "email": "security@paragonie.com"
       
    43     },
       
    44     {
       
    45       "name": "Frank Denis",
       
    46       "email": "jedisct1@pureftpd.org"
       
    47     }
       
    48   ],
       
    49   "autoload": {
       
    50     "files": ["autoload.php"]
       
    51   },
       
    52   "require": {
       
    53     "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8",
       
    54     "paragonie/random_compat": ">=1"
       
    55   },
       
    56   "require-dev": {
       
    57     "phpunit/phpunit": "^3|^4|^5"
       
    58   },
       
    59   "suggest": {
       
    60     "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
       
    61     "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
       
    62   }
       
    63 }