Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
b2460858
Commit
b2460858
authored
Jul 22, 2012
by
Peter Ross
Committed by
Michael Niedermayer
Jul 22, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tls: verify option
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
973a758f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
tls.c
libavformat/tls.c
+11
-2
No files found.
libavformat/tls.c
View file @
b2460858
...
...
@@ -108,7 +108,7 @@ static void set_options(URLContext *h, const char *uri)
{
TLSContext
*
c
=
h
->
priv_data
;
char
buf
[
1024
],
key
[
1024
];
int
has_cert
,
has_key
;
int
has_cert
,
has_key
,
verify
=
0
;
#if CONFIG_GNUTLS
int
ret
;
#endif
...
...
@@ -127,6 +127,13 @@ static void set_options(URLContext *h, const char *uri)
#endif
}
if
(
av_find_info_tag
(
buf
,
sizeof
(
buf
),
"verify"
,
p
))
{
char
*
endptr
=
NULL
;
verify
=
strtol
(
buf
,
&
endptr
,
10
);
if
(
buf
==
endptr
)
verify
=
1
;
}
has_cert
=
av_find_info_tag
(
buf
,
sizeof
(
buf
),
"cert"
,
p
);
has_key
=
av_find_info_tag
(
key
,
sizeof
(
key
),
"key"
,
p
);
#if CONFIG_GNUTLS
...
...
@@ -137,11 +144,14 @@ static void set_options(URLContext *h, const char *uri)
}
else
if
(
has_cert
^
has_key
)
{
av_log
(
h
,
AV_LOG_ERROR
,
"cert and key required
\n
"
);
}
gnutls_certificate_set_verify_flags
(
c
->
cred
,
verify
);
#elif CONFIG_OPENSSL
if
(
has_cert
&&
!
SSL_CTX_use_certificate_chain_file
(
c
->
ctx
,
buf
))
av_log
(
h
,
AV_LOG_ERROR
,
"SSL_CTX_use_certificate_chain_file %s
\n
"
,
ERR_error_string
(
ERR_get_error
(),
NULL
));
if
(
has_key
&&
!
SSL_CTX_use_PrivateKey_file
(
c
->
ctx
,
key
,
SSL_FILETYPE_PEM
))
av_log
(
h
,
AV_LOG_ERROR
,
"SSL_CTX_use_PrivateKey_file %s
\n
"
,
ERR_error_string
(
ERR_get_error
(),
NULL
));
if
(
verify
)
SSL_CTX_set_verify
(
c
->
ctx
,
SSL_VERIFY_PEER
|
SSL_VERIFY_FAIL_IF_NO_PEER_CERT
,
0
);
#endif
}
...
...
@@ -193,7 +203,6 @@ static int tls_open(URLContext *h, const char *uri, int flags)
if
(
!
numerichost
)
gnutls_server_name_set
(
c
->
session
,
GNUTLS_NAME_DNS
,
host
,
strlen
(
host
));
gnutls_certificate_allocate_credentials
(
&
c
->
cred
);
gnutls_certificate_set_verify_flags
(
c
->
cred
,
0
);
set_options
(
h
,
uri
);
gnutls_credentials_set
(
c
->
session
,
GNUTLS_CRD_CERTIFICATE
,
c
->
cred
);
gnutls_transport_set_ptr
(
c
->
session
,
(
gnutls_transport_ptr_t
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment