diff --git a/CHANGELOG b/CHANGELOG index 6567494..f390b19 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,13 +1,14 @@ -v0.12 (2018-03-13) +v0.12 (2018-03-15) ------------------ - Add TKTAuthRequireMultifactor and TKTAuthMultifactorURL. These can be used to protect certain Directory/Location directives with an additional login factor to achieve multifactor. Like the original login, the multifactor method is left up to the ticket generation - application, only requiring a attestation that multifactor has been + application, only requiring an attestation that multifactor has been supplied. (Contributed by Nick Ramser) v0.11 (2017-02-28) +------------------ - Fixes selection of digest algorithm when using TKTAuthDigest. v0.10 (2016-12-16) diff --git a/docs/install.html b/docs/install.html index 2bacf56..97e555c 100644 --- a/docs/install.html +++ b/docs/install.html @@ -220,7 +220,7 @@

Directives for use in directory/location/.htaccess scope

  • TKTAuthRequireMultifactor (since v0.12) @@ -303,7 +303,7 @@

    Ticket format

  • multifactor (optional; since v0.12)
  • diff --git a/src/mod_auth_pubtkt.c b/src/mod_auth_pubtkt.c index 6e24749..432a30e 100755 --- a/src/mod_auth_pubtkt.c +++ b/src/mod_auth_pubtkt.c @@ -357,10 +357,10 @@ static const command_rec auth_pubtkt_cmds[] = OR_AUTHCFG, "debug level (1-3, higher for more debug output)"), AP_INIT_FLAG("TKTAuthRequireMultifactor", ap_set_flag_slot, (void *)APR_OFFSETOF(auth_pubtkt_dir_conf, require_multifactor), - OR_AUTHCFG, "whether to require an mulitfactor login flag in the ticket"), + OR_AUTHCFG, "whether to require a mulitfactor login flag in the ticket"), AP_INIT_TAKE1("TKTAuthMultifactorURL", ap_set_string_slot, (void *)APR_OFFSETOF(auth_pubtkt_dir_conf, multifactor_url), - OR_AUTHCFG, "URL to redirect to if multifactor is required by not present in the ticket"), + OR_AUTHCFG, "URL to redirect to if multifactor is required but not present in the ticket"), {NULL}, };