python-kadmin
python-kadmin copied to clipboard
Useful function - ExportKeytab
Refer to apache kerb-admin api and kadmin.local, from my point of view, exportkeytab is very useful. How about adding it? @russjancewicz
I also find this functionality very useful. Any progress on this issue?
My current way on this issue was using commands.getstatusoutput('kadmin -p {0} -kt {1} -q "xst -k keys/{2}.keytab {2}"'.format(app.config['PRINCIPAL'], app.config['KEYTAB'], user)) and then read keytab. Although i resolved this, i don't think it's a good way...