일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 2FA
- apple
- FIDO2
- MFA
- MSYS2
- Nodejs
- css
- Android
- 인증
- openssl
- kmip
- 앱리소스
- fido
- MYSQL
- SWIFT
- 앨범북
- SwiftUI
- OSX
- SSL
- Xcode
- OTP
- 안드로이드
- SSH
- WebAuthn
- 앱스토어
- git
- 애플
- otpkey
- appres
- albumbook
Archives
- Today
- Total
인디노트
BIO client example 본문
BIO *cbio, *out;
int len;
char tmpbuf[1024];
cbio = BIO_new_connect("localhost:http");
out = BIO_new_fp(stdout, BIO_NOCLOSE);
if (BIO_do_connect(cbio) <= 0) {
fprintf(stderr, "Error connecting to server\n");
ERR_print_errors_fp(stderr);
exit(1);
}
BIO_puts(cbio, "GET / HTTP/1.0\n\n");
for (;;) {
len = BIO_read(cbio, tmpbuf, 1024);
if (len <= 0)
break;
BIO_write(out, tmpbuf, len);
}
BIO_free(cbio);
BIO_free(out);
반응형
'인증기술 > OpenSSL' 카테고리의 다른 글
An Introduction to OpenSSL Programming, Part I of II (0) | 2019.01.21 |
---|---|
non blocking SSL (0) | 2018.11.16 |
ssl_client.c (0) | 2018.11.11 |
Openssl을 이용한 암호화 통신 (0) | 2018.11.11 |
OpenSSL Client/Server (0) | 2018.11.11 |
Comments