Back to list
djx-y-z

update-liboqs

by djx-y-z

Dart FFI wrapper for liboqs, delivering post-quantum cryptographic algorithms. Supports NIST-standardized KEMs (e.g., ML-KEM) and signatures (e.g., ML-DSA), optimized for Flutter and cross-platform applications (Android, iOS, Linux, macOS, Windows). MIT Licensed.

3🍴 1📅 Jan 18, 2026

SKILL.md


name: update-liboqs description: Update liboqs native library version. Use when checking for updates, upgrading liboqs, bumping version, or updating native dependencies.

Update liboqs Version

Guide for updating the liboqs native library version in this project.

Quick Update (Automatic)

# Check for updates
make check

# Check and apply updates automatically
make check ARGS="--update"

This will:

  1. Check GitHub for latest liboqs release
  2. Update pubspec.yaml with new liboqs.native_version
  3. Update CHANGELOG.md with new entry

Manual Update Process

Step 1: Check Current Version

make version

Or check pubspec.yaml:

liboqs:
  native_version: "0.12.0"  # Current version

Step 2: Update Version

Edit pubspec.yaml:

liboqs:
  native_version: "0.13.0"  # New version

Step 3: Regenerate FFI Bindings

make regen

This downloads the new liboqs headers and regenerates lib/src/bindings/liboqs_bindings.dart.

Step 4: Run Tests

make test

Step 5: Commit Changes

git add pubspec.yaml lib/src/bindings/ CHANGELOG.md
git commit -m "Update liboqs to 0.13.0"
git push

CI will automatically build native libraries for all platforms.

Check Options

# Just check (no changes)
make check

# Check and update
make check ARGS="--update"

# Update to specific version
make check ARGS="--update --version 0.13.0"

# Force version bump type
make check ARGS="--update --bump major"
make check ARGS="--update --bump minor"
make check ARGS="--update --bump patch"

# Skip changelog (CI uses this)
make check ARGS="--update --no-changelog"

# JSON output for CI
make check ARGS="--json"

Version Locations

FileFieldDescription
pubspec.yamlliboqs.native_versionNative library version
pubspec.yamlversionDart package version
CHANGELOG.mdLatest entryWhat changed

After CI Builds

When CI completes after pushing:

  1. Native libraries are built for all platforms
  2. Artifacts are combined
  3. FFI bindings are regenerated (if API changed)
  4. Changes are committed back to repo

Troubleshooting

"No updates available"

"Binding generation failed"

  • New liboqs version may have breaking API changes
  • Check liboqs release notes
  • May need to update wrapper code in lib/src/

Tests fail after update

  • API may have changed
  • Check if algorithm names changed
  • Review liboqs changelog for breaking changes

Upstream Resources

Score

Total Score

75/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon