Skip to content

docs: add NIST SP 800-38G comment explaining AES-ECB usage in FPE #3

docs: add NIST SP 800-38G comment explaining AES-ECB usage in FPE

docs: add NIST SP 800-38G comment explaining AES-ECB usage in FPE #3

Workflow file for this run

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