Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在linux帐户的基础上做一个auth认证(就像PAM一样),这应该通过python来实现。还是我应该编写linux的加密算法,我的意思是每个发行版都拥有相同的加密方法?
我确实找到了一个名为 pam 的模块,它是由 ctype 实现的(调用你系统的 PAM)。
片段:
import pam if pam.authenticate('username','password'): print 'authentication correct' else: print 'authentication incorrect'