FIDO2Applet

(β˜… 160)

FIDO2 Javacard Applet

  • .gitignore
  • .gitmodules
  • .tool-versions
  • attestation_key_pair.py
  • build.gradle
  • decode_bufinfo.py
  • get_install_parameters.py
  • gradle.properties
  • gradlew
  • gradlew.bat
  • install_attestation_cert.py
  • LICENSE
  • mds.json
  • README.md
  • requirements.txt
  • sdks
  • settings.gradle

# Installation Guide

1. Get the code
git clone https://github.com/BryanJacobs/FIDO2Applet

Downloads the entire project code from GitHub to your computer.

cd FIDO2Applet

Moves into the project folder you just downloaded.

2. Gradle (Java/Kotlin)

Medium Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • JDK (Java) Required to build and run Java/Kotlin projects.
  • Gradle If the repo includes gradlew (Gradle Wrapper), you don't need to install Gradle separately.
./gradlew buildJavaCard

Builds the project using Gradle.

./gradlew jar testJar

Builds the project using Gradle.

βœ… A BUILD SUCCESSFUL message means it worked. The output is created under build/.

Pulled directly from this repo's README.

3. Python

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Python 3 On Windows, be sure to check 'Add Python to PATH' during installation.
python -m venv venv

Runs the Python script (or module).

./venv/bin/pip install -U -r requirements.txt

Installs the Python libraries listed in requirements.txt (or similar).

./venv/bin/python -m unittest discover -s python_tests

Runs the Python script (or module).

βœ… If it runs without errors and prints output in the terminal, it worked.

Pulled directly from this repo's README.

// repository documentation