일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- SwiftUI
- FIDO2
- WebAuthn
- 앱리소스
- OTP
- MSYS2
- css
- Nodejs
- 인증
- apple
- fido
- MYSQL
- 앱스토어
- SSH
- git
- 2FA
- SSL
- kmip
- openssl
- 앨범북
- Xcode
- otpkey
- 애플
- OSX
- SWIFT
- Android
- albumbook
- MFA
- appres
- 안드로이드
Archives
- Today
- Total
인디노트
사설 SSL 적용 HTTPS 접속하기 위해서 (Swift) 본문
NSLocalizedDescription=The certificate for this server is invalid. You might be connecting to a server that is pretending to be “10.10.145.123” which could put your confidential information at risk.
다음과 같은 구현을 해 주자.
extension URLSessionDelegate {
func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Swift.Void) {
if challenge.previousFailureCount > 0 {
completionHandler(.cancelAuthenticationChallenge, nil)
} else if let serverTrust = challenge.protectionSpace.serverTrust {
completionHandler(.useCredential, URLCredential(trust: serverTrust))
} else {
print("unknown state. error: \(challenge.error)")
completionHandler(.performDefaultHandling, nil)
}
}
}
반응형
'소스 팁 > Objective C, Swift, iOS, macOS' 카테고리의 다른 글
AuthorizationExecuteWithPrivileges 대신 SMJobBless (0) | 2023.03.29 |
---|---|
macOS 재시작 하는 방법 (0) | 2023.03.29 |
[강좌] 앱 자체 화면 모드 기능 구현 - macOS (0) | 2022.11.04 |
[강좌] SwiftUI 에서 viewDidLoad 처리 방법 구현 (1) | 2022.11.04 |
SwiftUI 에서 List 의 배경색 변경 (0) | 2022.10.27 |
Comments