Skip to content

coldbox-modules/cbsecurity-passkeys

Repository files navigation

CBSecurity Passkeys

Requirements

  • ColdBox 6+
  • cbSecurity 3+

Installation

  1. Install CBSecurity Passkeys box install cbsecurity-passkeys

  2. Add Java libs from cbsecurity-passkeys

this.javaSettings = {
    loadPaths : [ "./modules/cbsecurity-passkeys/lib" ],
    loadColdFusionClassPath : true,
    reloadOnChange : true
};
  1. Implement the ICredentialRepository interface. (See an example in /resources/examples/Passkey.cfc)

  2. Configure your credentialRepositoryMapping in config/ColdBox.cfc

moduleSettings = {
    "cbsecurity-passkeys": {
        "credentialRepositoryMapping": "Passkey"
    }
}