docs: add NIST SP 800-38G comment explaining AES-ECB usage in FPE #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Security | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| schedule: | |
| - cron: '0 6 * * 1' | |
| jobs: | |
| analyze: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: "8.3" | |
| tools: composer:v2 | |
| - run: composer install --no-interaction --prefer-dist | |
| - name: Static Analysis | |
| run: | | |
| composer require --dev phpstan/phpstan --no-interaction | |
| vendor/bin/phpstan analyse src/ --level=5 || true |