composer.json 546 B

1234567891011121314151617
  1. {
  2. "name": "evit/php-gm-crypto",
  3. "description": "Fully compatible with the sm4-cbc and sm4-ecb state secret SM algorithms of openssl. When openssl >= 1.1.1 supports the state secret algorithm, directly call openssl for SM4 encryption and decryption, otherwise call the custom algorithm.",
  4. "license": "MIT",
  5. "autoload": {
  6. "psr-4": {
  7. "Evit\\PhpGmCrypto\\": "src/"
  8. }
  9. },
  10. "authors": [
  11. {
  12. "name": "Endy",
  13. "email": "endy@evit.net.cn"
  14. }
  15. ],
  16. "require": {}
  17. }