GustavoWoltmann
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2016
05:58 AM
skip the verification of the ssl certs
I am looking to skip the verification of the ssl certs on my server. Is there a skip ssl verify flag available in Brightscript?
2 REPLIES 2
boomAlex
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2016
09:49 AM
Re: skip the verification of the ssl certs
Not sure what you mean here.
for roURLTransfer you can use roku's certs by calling SetCertificatesFile("common:/certs/ca-bundle.crt") this may do what you want.
for roURLTransfer you can use roku's certs by calling SetCertificatesFile("common:/certs/ca-bundle.crt") this may do what you want.
belltown
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2016
12:30 PM
Re: skip the verification of the ssl certs
"GustavoWoltmann" wrote:
I am looking to skip the verification of the ssl certs on my server. Is there a skip ssl verify flag available in Brightscript?
ifUrlTransfer.EnablePeerVerification(False) should work for the roUrlTransfer component. Unfortunately, EnablePeerVerification() is not implemented for other BrightScript components (roVideoScreen, etc.) I'm not sure why Roku did not implement EnablePeerVerification() in ifHttpAgent or in the other individual components.