Next-Gen App & Browser
Testing Cloud

Trusted by 2 Mn+ QAs & Devs to accelerate their release cycles

Next-Gen App & Browser Testing Cloud

Strict Transport Security

Last updated on : 2023-03-20

Note:
Strict Transport Security shows a browser compatibility score of 97. This is a collective score out of 100 to represent browser support of a web technology. The higher this score is, the greater is the browser compatibility. The browser compatibility score is not a 100% reflection for every browser and the web technology support. However, it does give you an estimate on how much you should rely on a particular web technology in terms of browser compatibility.

Overview

This message appears because this site is only accessible over a secure connection HTTPS.

Code snippets

struct.StrictTransportSecurity.html

Source:struct.StrictTransportSecurity.html Github

copy

Full Screen

1<!DOCTYPE html>2<html lang="en">3<head>4    <meta charset="utf-8">5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <meta name="generator" content="rustdoc">7    <meta name="description" content="API documentation for the Rust `StrictTransportSecurity` struct in crate `iron`.">8    <meta name="keywords" content="rust, rustlang, rust-lang, StrictTransportSecurity">9    <title>iron::headers::StrictTransportSecurity - Rust</title>10    <link rel="stylesheet" type="text/css" href="../../main.css">11    <link rel="shortcut icon" href="https://avatars0.githubusercontent.com/u/7853871?s=256">12    13</head>14<body class="rustdoc">15    <!--[if lte IE 8]>16    <div class="warning">17        This old browser is unsupported and will most likely display funky18        things.19    </div>20    <![endif]-->21    22    <nav class="sidebar">23        <a href='../../iron/index.html'><img src='https://avatars0.githubusercontent.com/u/7853871?s=128' alt='' width='100'></a>24        <p class='location'><a href='../index.html'>iron</a>::<wbr><a href='index.html'>headers</a></p><script>window.sidebarCurrent = {name: 'StrictTransportSecurity', ty: 'struct', relpath: ''};</script><script defer src="sidebar-items.js"></script>25    </nav>26    <nav class="sub">27        <form class="search-form js-only">28            <div class="search-container">29                <input class="search-input" name="search"30                       autocomplete="off"31                       placeholder="Click or press ‘S’ to search, ‘?’ for more options…"32                       type="search">33            </div>34        </form>35    </nav>36    <section id='main' class="content struct">37<h1 class='fqn'><span class='in-band'>Struct <a href='../index.html'>iron</a>::<wbr><a href='index.html'>headers</a>::<wbr><a class='struct' href=''>StrictTransportSecurity</a></span><span class='out-of-band'><span id='render-detail'>38            <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">39                [<span class='inner'>&#x2212;</span>]40            </a>41        </span><a id='src-3755' class='srclink' href='../../hyper/header/common/strict_transport_security/struct.StrictTransportSecurity.html?gotosrc=3755' title='goto source code'>[src]</a></span></h1>42<pre class='rust struct'>pub struct StrictTransportSecurity {43    pub include_subdomains: <a href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a>,44    pub max_age: <a href='https://doc.rust-lang.org/nightly/std/primitive.u64.html'>u64</a>,45}</pre><div class='docblock'><p><code>StrictTransportSecurity</code> header, defined in <a href="https://tools.ietf.org/html/rfc6797">RFC6797</a></p>46<p>This specification defines a mechanism enabling web sites to declare47themselves accessible only via secure connections and/or for users to be48able to direct their user agent(s) to interact with given sites only over49secure connections.  This overall policy is referred to as HTTP Strict50Transport Security (HSTS).  The policy is declared by web sites via the51Strict-Transport-Security HTTP response header field and/or by other means,52such as user agent configuration, for example.</p>53<h1 id='abnf' class='section-header'><a href='#abnf'>ABNF</a></h1>54<pre><code class="language-plain">     [ directive ]  *( &quot;;&quot; [ directive ] )55     directive                 = directive-name [ &quot;=&quot; directive-value ]56     directive-name            = token57     directive-value           = token | quoted-string58</code></pre>59<h1 id='example-values' class='section-header'><a href='#example-values'>Example values</a></h1>60<ul>61<li><code>max-age=31536000</code></li>62<li><code>max-age=15768000 ; includeSubDomains</code></li>63</ul>64<h1 id='example' class='section-header'><a href='#example'>Example</a></h1><pre class='rust rust-example-rendered'>65<span class='kw'>use</span> <span class='ident'>hyper</span>::<span class='ident'>header</span>::{<span class='ident'>Headers</span>, <span class='ident'>StrictTransportSecurity</span>};66<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>headers</span> <span class='op'>=</span> <span class='ident'>Headers</span>::<span class='ident'>new</span>();67<span class='ident'>headers</span>.<span class='ident'>set</span>(68   <span class='ident'>StrictTransportSecurity</span>::<span class='ident'>including_subdomains</span>(<span class='number'>31536000u64</span>)69);</pre>70</div><h2 class='fields'>Fields</h2>71<table><tr class='stab '>72                                  <td id='structfield.include_subdomains'><code>include_subdomains</code></td><td><div class='docblock'><p>Signals the UA that the HSTS Policy applies to this HSTS Host as well as73any subdomains of the host&#39;s domain name.</p>74</div></td></tr><tr class='stab '>75                                  <td id='structfield.max_age'><code>max_age</code></td><td><div class='docblock'><p>Specifies the number of seconds, after the reception of the STS header76field, during which the UA regards the host (from whom the message was77received) as a Known HSTS Host.</p>78</div></td></tr></table><h2 id='methods'>Methods</h2><h3 class='impl'><code>impl <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h3><div class='impl-items'><h4 id='method.including_subdomains' class='method'><code>fn <a href='#method.including_subdomains' class='fnname'>including_subdomains</a>(max_age: <a href='https://doc.rust-lang.org/nightly/std/primitive.u64.html'>u64</a>) -&gt; <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h4>79<div class='docblock'><p>Create an STS header that includes subdomains</p>80</div><h4 id='method.excluding_subdomains' class='method'><code>fn <a href='#method.excluding_subdomains' class='fnname'>excluding_subdomains</a>(max_age: <a href='https://doc.rust-lang.org/nightly/std/primitive.u64.html'>u64</a>) -&gt; <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h4>81<div class='docblock'><p>Create an STS header that excludes subdomains</p>82</div></div><h2 id='implementations'>Trait Implementations</h2><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html' title='core::str::FromStr'>FromStr</a> for <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h3><div class='impl-items'><h4 id='assoc_type.Err' class='type'><code>type Err = <a class='enum' href='../../iron/error/enum.HttpError.html' title='iron::error::HttpError'>Error</a></code></h4>83<h4 id='method.from_str' class='method'><code>fn <a href='https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html#method.from_str' class='fnname'>from_str</a>(s: &amp;<a href='https://doc.rust-lang.org/nightly/std/primitive.str.html'>str</a>) -&gt; <a class='enum' href='https://doc.rust-lang.org/nightly/core/result/enum.Result.html' title='core::result::Result'>Result</a>&lt;<a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a>, <a class='enum' href='../../iron/error/enum.HttpError.html' title='iron::error::HttpError'>Error</a>&gt;</code></h4>84</div><h3 class='impl'><code>impl <a class='trait' href='../../iron/headers/trait.Header.html' title='iron::headers::Header'>Header</a> for <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h3><div class='impl-items'><h4 id='method.header_name' class='method'><code>fn <a href='../../iron/headers/trait.Header.html#method.header_name' class='fnname'>header_name</a>() -&gt; &amp;'static <a href='https://doc.rust-lang.org/nightly/std/primitive.str.html'>str</a></code></h4>85<h4 id='method.parse_header' class='method'><code>fn <a href='../../iron/headers/trait.Header.html#method.parse_header' class='fnname'>parse_header</a>(raw: <a href='https://doc.rust-lang.org/nightly/std/primitive.slice.html'>&amp;[</a><a class='struct' href='https://doc.rust-lang.org/nightly/collections/vec/struct.Vec.html' title='collections::vec::Vec'>Vec</a>&lt;<a href='https://doc.rust-lang.org/nightly/std/primitive.u8.html'>u8</a>&gt;<a href='https://doc.rust-lang.org/nightly/std/primitive.slice.html'>]</a>) -&gt; <a class='enum' href='https://doc.rust-lang.org/nightly/core/result/enum.Result.html' title='core::result::Result'>Result</a>&lt;<a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a>, <a class='enum' href='../../iron/error/enum.HttpError.html' title='iron::error::HttpError'>Error</a>&gt;</code></h4>86</div><h3 class='impl'><code>impl <a class='trait' href='../../iron/headers/trait.HeaderFormat.html' title='iron::headers::HeaderFormat'>HeaderFormat</a> for <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h3><div class='impl-items'><h4 id='method.fmt_header' class='method'><code>fn <a href='../../iron/headers/trait.HeaderFormat.html#method.fmt_header' class='fnname'>fmt_header</a>(&amp;self, f: &amp;mut <a class='struct' href='https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html' title='core::fmt::Formatter'>Formatter</a>) -&gt; <a class='enum' href='https://doc.rust-lang.org/nightly/core/result/enum.Result.html' title='core::result::Result'>Result</a>&lt;<a href='https://doc.rust-lang.org/nightly/std/primitive.tuple.html'>()</a>, <a class='struct' href='https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html' title='core::fmt::Error'>Error</a>&gt;</code></h4>87</div><h3 id='derived_implementations'>Derived Implementations </h3><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html' title='core::fmt::Debug'>Debug</a> for <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h3><div class='impl-items'><h4 id='method.fmt' class='method'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html#method.fmt' class='fnname'>fmt</a>(&amp;self, __arg_0: &amp;mut <a class='struct' href='https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html' title='core::fmt::Formatter'>Formatter</a>) -&gt; <a class='enum' href='https://doc.rust-lang.org/nightly/core/result/enum.Result.html' title='core::result::Result'>Result</a>&lt;<a href='https://doc.rust-lang.org/nightly/std/primitive.tuple.html'>()</a>, <a class='struct' href='https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html' title='core::fmt::Error'>Error</a>&gt;</code></h4>88</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html' title='core::cmp::PartialEq'>PartialEq</a>&lt;<a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a>&gt; for <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h3><div class='impl-items'><h4 id='method.eq' class='method'><code>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.eq' class='fnname'>eq</a>(&amp;self, __arg_0: &amp;<a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a>) -&gt; <a href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></h4>89<h4 id='method.ne' class='method'><code>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.ne' class='fnname'>ne</a>(&amp;self, __arg_0: &amp;<a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a>) -&gt; <a href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></h4>90</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html' title='core::clone::Clone'>Clone</a> for <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h3><div class='impl-items'><h4 id='method.clone' class='method'><code>fn <a href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone' class='fnname'>clone</a>(&amp;self) -&gt; <a class='struct' href='../../iron/headers/struct.StrictTransportSecurity.html' title='iron::headers::StrictTransportSecurity'>StrictTransportSecurity</a></code></h4>91<h4 id='method.clone_from' class='method'><code>fn <a href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone_from' class='fnname'>clone_from</a>(&amp;mut self, source: &amp;Self)</code></h4>92</div></section>93    <section id='search' class="content hidden"></section>94    <section class="footer"></section>95    <aside id="help" class="hidden">96        <div>97            <h1 class="hidden">Help</h1>98            <div class="shortcuts">99                <h2>Keyboard Shortcuts</h2>100                <dl>101                    <dt>?</dt>102                    <dd>Show this help dialog</dd>103                    <dt>S</dt>104                    <dd>Focus the search field</dd>105                    <dt>&larrb;</dt>106                    <dd>Move up in search results</dd>107                    <dt>&rarrb;</dt>108                    <dd>Move down in search results</dd>109                    <dt>&#9166;</dt>110                    <dd>Go to active search result</dd>111                </dl>112            </div>113            <div class="infos">114                <h2>Search Tricks</h2>115                <p>116                    Prefix searches with a type followed by a colon (e.g.117                    <code>fn:</code>) to restrict the search to a given type.118                </p>119                <p>120                    Accepted types are: <code>fn</code>, <code>mod</code>,121                    <code>struct</code>, <code>enum</code>,122                    <code>trait</code>, <code>type</code>, <code>macro</code>,123                    and <code>const</code>.124                </p>125                <p>126                    Search functions by type signature (e.g.127                    <code>vec -> usize</code>)128                </p>129            </div>130        </div>131    </aside>132    133    <script>134        window.rootPath = "../../";135        window.currentCrate = "iron";136        window.playgroundUrl = "";137    </script>138    <script src="../../jquery.js"></script>139    <script src="../../main.js"></script>140    141    <script async src="../../search-index.js"></script>142</body>...

Full Screen

Browser Compatibility

  • Strict Transport Security on IE is fully supported on 11-11, partially supported on None of the versions, and not supported on 5.5-10 IE versions.
  • Strict Transport Security on Edge is fully supported on 12-111, partially supported on None of the versions, and not supported on below 12 Edge versions.
  • Strict Transport Security on Firefox is fully supported on 4-113, partially supported on None of the versions, and not supported on 2-3 Firefox versions.
  • Strict Transport Security on Chrome is fully supported on 4-114, partially supported on None of the versions, and not supported on below 4 Chrome versions.
  • Strict Transport Security on Safari is fully supported on 7.1-16.4, partially supported on None of the versions, and not supported on 3.2-6 Safari versions.
  • Strict Transport Security on Opera is fully supported on 12-95, partially supported on None of the versions, and not supported on 9.5-11.6 Opera versions.
  • Strict Transport Security on Safari on iOS is fully supported on 7-16.4, partially supported on None of the versions, and not supported on 3.2-6 Safari on iOS versions.
  • Strict Transport Security on Android Browser is fully supported on 4.4-111, partially supported on None of the versions, and not supported on 2.1-4 Android Browser versions.
  • Strict Transport Security on Opera Mobile is fully supported on 64-73, partially supported on None of the versions, and not supported on 10-12 Opera Mobile versions.
  • Strict Transport Security on Chrome for Android is fully supported on 97-111, partially supported on None of the versions, and not supported on below 97 Chrome for Android versions.
  • Strict Transport Security on Firefox for Android is fully supported on 95-110, partially supported on None of the versions, and not supported on below 95 Firefox for Android versions.
  • Strict Transport Security on Samsung Internet is fully supported on 4-20, partially supported on None of the versions, and not supported on below 4 Samsung Internet versions.
97
Hightooltip

Browser Compatibility Score

Chrome IE
Medium

Browser Support For IE Versions

11-11
Fully
-
Partially
5.5-10
No Support
Chrome Edge
High

Browser Support For Edge Versions

12-111
Fully
-
Partially
-
No Support
Chrome Firefox
High

Browser Support For Firefox Versions

4-113
Fully
-
Partially
2-3
No Support
Chrome Chrome
High

Browser Support For Chrome Versions

4-114
Fully
-
Partially
-
No Support
Chrome Safari
High

Browser Support For Safari Versions

7.1-16.4
Fully
-
Partially
3.2-6
No Support
Chrome Opera
High

Browser Support For Opera Versions

12-95
Fully
-
Partially
9.5-11.6
No Support
Chrome Safari on iOS
High

Browser Support For Safari on iOS Versions

7-16.4
Fully
-
Partially
3.2-6
No Support
Chrome Android Browser
High

Browser Support For Android Browser Versions

4.4-111
Fully
-
Partially
2.1-4
No Support
Chrome Opera Mobile
High

Browser Support For Opera Mobile Versions

64-73
Fully
-
Partially
10-12
No Support
Chrome Chrome for Android
High

Browser Support For Chrome for Android Versions

97-111
Fully
-
Partially
-
No Support
Chrome Firefox for Android
High

Browser Support For Firefox for Android Versions

95-110
Fully
-
Partially
-
No Support
Chrome Samsung Internet
High

Browser Support For Samsung Internet Versions

4-20
Fully
-
Partially
-
No Support

Debug webpages on the go with LT Debug Chrome extension.

Add to Chrome
LT Browser

Test your website on 3000+ browsers

Test your website on 3000+ real browsers and operating systems for mobile and desktop with the LambdaTest cloud. Perform browser compatibility test for Strict Transport Security and many more web technologies that are a part of your website or web-application.

Last Modified date

2023-03-20

Browser Support for Strict Transport Security

References


Data sourced from

Debug webpages on the go with LT Debug Chrome extension.

Add to Chrome
LT Browser

Debug Your Mobile Websites Faster With LT Browser!

Harness the power of Chromium-based engine to deliver responsive websites and web apps.

Try for free...
Join

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful

LambdaTestX

We use cookies to give you the best experience. Cookies help to provide a more personalized experience and relevant advertising for you, and web analytics for us. Learn More in our Cookies policy, Privacy & Terms of service

Allow Cookie