일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Nodejs
- SSL
- 앱스토어
- MFA
- openssl
- OSX
- kmip
- 앨범북
- 애플
- apple
- appres
- otpkey
- 2FA
- SwiftUI
- 인증
- SSH
- css
- WebAuthn
- MSYS2
- OTP
- 앱리소스
- FIDO2
- git
- 안드로이드
- SWIFT
- fido
- Android
- albumbook
- Xcode
- MYSQL
Archives
- Today
- Total
인디노트
MechanismInvoke 를 구현하는 샘플 본문
이거 어디다 쓰는 물건인고? 하시는 개발자분들 계실거 같은데요. 인증 관련 개발자들 중에서 극히 드문 경우에만 사용합니다.
이 예제에서는 AuthorizationExecuteWithPrivileges를 사용하여 메커니즘을 실행하는 예제이며 자꾸 잊어 버려서 기록용으로 올려 놓습니다.
#include <Security/AuthorizationPlugin.h>
OSStatus MyPluginCreate(AuthorizationPluginRef inPlugin, const AuthorizationCallbacks *inCallbacks, AuthorizationPluginRef *outPlugin) {
// ...
return err;
}
OSStatus MechanismInvoke(const AuthorizationMechanismId mechanismId, AuthorizationRef authorization, const AuthorizationEngineRef engine, const AuthorizationMechanismRef mechanism, const char *path, const char *const argv[], char **environment, FILE *communicate, const int *beforeCloseFDs, const int argc, const AuthorizationItem argv[]) {
OSStatus err;
char **myEnvp = NULL;
const char *myPath = "/path/to/my/command";
err = AuthorizationCopyExternalForm(authorization, &authData);
if (err == noErr) {
myEnvp = (char **) malloc(sizeof(char *));
if (myEnvp != NULL) {
myEnvp[0] = NULL;
err = AuthorizationExecuteWithPrivileges(authorization, myPath, myEnvp, NULL, &pipe[0]);
free(myEnvp);
} else {
err = memFullErr;
}
}
return err;
}
반응형
'소스 팁 > Objective C, Swift, iOS, macOS' 카테고리의 다른 글
macOS 에서 objective c 로 windowDidLoad 이벤트 처리시 현재 윈도우의 위치를 화면의 중앙으로 이동하는 방법 (0) | 2023.04.05 |
---|---|
xcode 에서 직접 app 에 서명 (0) | 2023.04.04 |
SFAuthorizationPluginView (0) | 2023.03.31 |
macOS 관리자 권한 얻어오기 (0) | 2023.03.29 |
Mac에서 Objective-C를 사용하여 시스템을 종료하는 코드 (0) | 2023.03.29 |
Comments