diff options
| author | Nathaniel McCallum <npmccallum@redhat.com> | 2013-04-03 12:38:05 -0400 |
|---|---|---|
| committer | Greg Hudson <ghudson@mit.edu> | 2013-07-11 14:14:34 -0400 |
| commit | 4b5dd8bcfb10af254fb9efbe4cf39befe5b1e6ac (patch) | |
| tree | 441210f4227d129ed082a5c6174858c6f0af91c6 /src/kdc | |
| parent | 8b8f031c6e64360a26c484b548d2158944e09087 (diff) | |
| download | krb5-4b5dd8bcfb10af254fb9efbe4cf39befe5b1e6ac.tar.gz krb5-4b5dd8bcfb10af254fb9efbe4cf39befe5b1e6ac.tar.xz krb5-4b5dd8bcfb10af254fb9efbe4cf39befe5b1e6ac.zip | |
Add server-side otp preauth plugin
This plugin implements the proposal for providing OTP support by
proxying requests to RADIUS. Details can be found inside the
provided documentation as well as on the project page.
http://k5wiki.kerberos.org/wiki/Projects/OTPOverRADIUS
ticket: 7678
Diffstat (limited to 'src/kdc')
| -rw-r--r-- | src/kdc/kdc_preauth.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/kdc/kdc_preauth.c b/src/kdc/kdc_preauth.c index c3543caae..07b180f28 100644 --- a/src/kdc/kdc_preauth.c +++ b/src/kdc/kdc_preauth.c @@ -238,6 +238,8 @@ get_plugin_vtables(krb5_context context, /* Auto-register encrypted challenge and (if possible) pkinit. */ k5_plugin_register_dyn(context, PLUGIN_INTERFACE_KDCPREAUTH, "pkinit", "preauth"); + k5_plugin_register_dyn(context, PLUGIN_INTERFACE_KDCPREAUTH, "otp", + "preauth"); k5_plugin_register(context, PLUGIN_INTERFACE_KDCPREAUTH, "encrypted_challenge", kdcpreauth_encrypted_challenge_initvt); |
