├── .gitignore ├── Configuration Profiles ├── Smartcard_Authentication.mobileconfig └── Smartcard_Enforcement.mobileconfig ├── Misc └── SmartcardLogin.plist ├── README.md └── Scripts ├── adobe_ctk.sh ├── cleanupMSSMIME.sh ├── cleanupUserSMIME.sh ├── extenstion_attributes ├── ea_altsecid.sh ├── ea_certinfo.sh └── ea_pam.sh ├── local_attrmap.zsh ├── lockpam.sh ├── mapadmins.sh ├── setIdPref.sh ├── smartcard_recovery.sh └── unlockpam.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vscode -------------------------------------------------------------------------------- /Configuration Profiles/Smartcard_Authentication.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golbiga/macOS_Smartcard/HEAD/Configuration Profiles/Smartcard_Authentication.mobileconfig -------------------------------------------------------------------------------- /Configuration Profiles/Smartcard_Enforcement.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golbiga/macOS_Smartcard/HEAD/Configuration Profiles/Smartcard_Enforcement.mobileconfig -------------------------------------------------------------------------------- /Misc/SmartcardLogin.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golbiga/macOS_Smartcard/HEAD/Misc/SmartcardLogin.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golbiga/macOS_Smartcard/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/adobe_ctk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golbiga/macOS_Smartcard/HEAD/Scripts/adobe_ctk.sh -------------------------------------------------------------------------------- /Scripts/cleanupMSSMIME.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golbiga/macOS_Smartcard/HEAD/Scripts/cleanupMSSMIME.sh -------------------------------------------------------------------------------- /Scripts/cleanupUserSMIME.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golbiga/macOS_Smartcard/HEAD/Scripts/cleanupUserSMIME.sh -------------------------------------------------------------------------------- /Scripts/extenstion_attributes/ea_altsecid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golbiga/macOS_Smartcard/HEAD/Scripts/extenstion_attributes/ea_altsecid.sh -------------------------------------------------------------------------------- /Scripts/extenstion_attributes/ea_certinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golbiga/macOS_Smartcard/HEAD/Scripts/extenstion_attributes/ea_certinfo.sh -------------------------------------------------------------------------------- /Scripts/extenstion_attributes/ea_pam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golbiga/macOS_Smartcard/HEAD/Scripts/extenstion_attributes/ea_pam.sh -------------------------------------------------------------------------------- /Scripts/local_attrmap.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golbiga/macOS_Smartcard/HEAD/Scripts/local_attrmap.zsh -------------------------------------------------------------------------------- /Scripts/lockpam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golbiga/macOS_Smartcard/HEAD/Scripts/lockpam.sh -------------------------------------------------------------------------------- /Scripts/mapadmins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golbiga/macOS_Smartcard/HEAD/Scripts/mapadmins.sh -------------------------------------------------------------------------------- /Scripts/setIdPref.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golbiga/macOS_Smartcard/HEAD/Scripts/setIdPref.sh -------------------------------------------------------------------------------- /Scripts/smartcard_recovery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golbiga/macOS_Smartcard/HEAD/Scripts/smartcard_recovery.sh -------------------------------------------------------------------------------- /Scripts/unlockpam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golbiga/macOS_Smartcard/HEAD/Scripts/unlockpam.sh --------------------------------------------------------------------------------