metanorma-nist 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.hound.yml +3 -0
- data/.rubocop.yml +10 -0
- data/.travis.yml +16 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/LICENSE +25 -0
- data/README.adoc +358 -0
- data/bin/console +14 -0
- data/bin/rspec +18 -0
- data/bin/setup +8 -0
- data/lib/asciidoctor/nist.rb +7 -0
- data/lib/asciidoctor/nist/biblio.rng +921 -0
- data/lib/asciidoctor/nist/converter.rb +271 -0
- data/lib/asciidoctor/nist/front.rb +150 -0
- data/lib/asciidoctor/nist/isodoc.rng +1063 -0
- data/lib/asciidoctor/nist/isostandard.rng +1071 -0
- data/lib/asciidoctor/nist/nist.rng +196 -0
- data/lib/isodoc/nist/html/commerce-logo-color.png +0 -0
- data/lib/isodoc/nist/html/deptofcommerce.png +0 -0
- data/lib/isodoc/nist/html/header.html +163 -0
- data/lib/isodoc/nist/html/html_nist_intro.html +46 -0
- data/lib/isodoc/nist/html/html_nist_titlepage.html +140 -0
- data/lib/isodoc/nist/html/htmlstyle.scss +1160 -0
- data/lib/isodoc/nist/html/logo.png +0 -0
- data/lib/isodoc/nist/html/nist.scss +749 -0
- data/lib/isodoc/nist/html/scripts.html +82 -0
- data/lib/isodoc/nist/html/scripts.pdf.html +70 -0
- data/lib/isodoc/nist/html/word_nist_intro.html +142 -0
- data/lib/isodoc/nist/html/word_nist_titlepage.html +247 -0
- data/lib/isodoc/nist/html/wordstyle.scss +1134 -0
- data/lib/isodoc/nist/html_convert.rb +454 -0
- data/lib/isodoc/nist/i18n-en.yaml +3 -0
- data/lib/isodoc/nist/metadata.rb +116 -0
- data/lib/isodoc/nist/pdf_convert.rb +456 -0
- data/lib/isodoc/nist/word_convert.rb +472 -0
- data/lib/metanorma-nist.rb +11 -0
- data/lib/metanorma/nist.rb +7 -0
- data/lib/metanorma/nist/processor.rb +43 -0
- data/lib/metanorma/nist/version.rb +5 -0
- data/metanorma-nist.gemspec +44 -0
- metadata +310 -0
@@ -0,0 +1,82 @@
|
|
1
|
+
<script>
|
2
|
+
//TOC generation
|
3
|
+
$('#toc').toc({
|
4
|
+
'selectors': 'h1,h2:not(.TermNum)', //elements to use as headings
|
5
|
+
'container': 'main', //element to find all selectors in
|
6
|
+
'smoothScrolling': true, //enable or disable smooth scrolling on click
|
7
|
+
'prefix': 'toc', //prefix for anchor tags and class names
|
8
|
+
'onHighlight': function(el) {}, //called when a new section is highlighted
|
9
|
+
'highlightOnScroll': true, //add class to heading that is currently in focus
|
10
|
+
'highlightOffset': 100, //offset to trigger the next headline
|
11
|
+
'anchorName': function(i, heading, prefix) { //custom function for anchor name
|
12
|
+
return prefix+i;
|
13
|
+
},
|
14
|
+
'headerText': function(i, heading, $heading) { //custom function building the header-item text
|
15
|
+
return $heading.text();
|
16
|
+
},
|
17
|
+
'itemClass': function(i, heading, $heading, prefix) { // custom function for item class
|
18
|
+
return $heading[0].tagName.toLowerCase();
|
19
|
+
}
|
20
|
+
});
|
21
|
+
|
22
|
+
</script>
|
23
|
+
|
24
|
+
<script>
|
25
|
+
//TOC toggle animation
|
26
|
+
$('#toggle').on('click', function(){
|
27
|
+
if( $('nav').is(':visible') ) {
|
28
|
+
$('nav').animate({ 'left': '-353px' }, 'slow', function(){
|
29
|
+
$('nav').hide();
|
30
|
+
});
|
31
|
+
$('.container').animate({ 'padding-left': '31px' }, 'slow');
|
32
|
+
}
|
33
|
+
else {
|
34
|
+
$('nav').show();
|
35
|
+
$('nav').animate({ 'left': '0px' }, 'slow');
|
36
|
+
$('.container').animate({ 'padding-left': '360px' }, 'slow');
|
37
|
+
}
|
38
|
+
});
|
39
|
+
</script>
|
40
|
+
|
41
|
+
<script>
|
42
|
+
// Scroll to top button
|
43
|
+
window.onscroll = function() {scrollFunction()};
|
44
|
+
|
45
|
+
function scrollFunction() {
|
46
|
+
if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
|
47
|
+
document.getElementById("myBtn").style.display = "block";
|
48
|
+
} else {
|
49
|
+
document.getElementById("myBtn").style.display = "none";
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
// When the user clicks on the button, scroll to the top of the document
|
54
|
+
function topFunction() {
|
55
|
+
document.body.scrollTop = 0;
|
56
|
+
document.documentElement.scrollTop = 0;
|
57
|
+
}
|
58
|
+
</script>
|
59
|
+
|
60
|
+
<script>
|
61
|
+
/**
|
62
|
+
* AnchorJS - v4.1.0 - 2017-09-20
|
63
|
+
* https://github.com/bryanbraun/anchorjs
|
64
|
+
* Copyright (c) 2017 Bryan Braun; Licensed MIT
|
65
|
+
*/
|
66
|
+
!function(A,e){"use strict";"function"==typeof define&&define.amd?define([],e):"object"==typeof module&&module.exports?module.exports=e():(A.AnchorJS=e(),A.anchors=new A.AnchorJS)}(this,function(){"use strict";return function(A){function e(A){A.icon=A.hasOwnProperty("icon")?A.icon:"",A.visible=A.hasOwnProperty("visible")?A.visible:"hover",A.placement=A.hasOwnProperty("placement")?A.placement:"right",A.ariaLabel=A.hasOwnProperty("ariaLabel")?A.ariaLabel:"Anchor",A.class=A.hasOwnProperty("class")?A.class:"",A.truncate=A.hasOwnProperty("truncate")?Math.floor(A.truncate):64}function t(A){var e;if("string"==typeof A||A instanceof String)e=[].slice.call(document.querySelectorAll(A));else{if(!(Array.isArray(A)||A instanceof NodeList))throw new Error("The selector provided to AnchorJS was invalid.");e=[].slice.call(A)}return e}function i(){if(null===document.head.querySelector("style.anchorjs")){var A,e=document.createElement("style");e.className="anchorjs",e.appendChild(document.createTextNode("")),void 0===(A=document.head.querySelector('[rel="stylesheet"], style'))?document.head.appendChild(e):document.head.insertBefore(e,A),e.sheet.insertRule(" .anchorjs-link { opacity: 0; text-decoration: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }",e.sheet.cssRules.length),e.sheet.insertRule(" *:hover > .anchorjs-link, .anchorjs-link:focus { opacity: 1; }",e.sheet.cssRules.length),e.sheet.insertRule(" [data-anchorjs-icon]::after { content: attr(data-anchorjs-icon); }",e.sheet.cssRules.length),e.sheet.insertRule(' @font-face { font-family: "anchorjs-icons"; src: url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype"); }',e.sheet.cssRules.length)}}this.options=A||{},this.elements=[],e(this.options),this.isTouchDevice=function(){return!!("ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch)},this.add=function(A){var n,o,s,a,r,c,h,l,u,d,f,p=[];if(e(this.options),"touch"===(f=this.options.visible)&&(f=this.isTouchDevice()?"always":"hover"),A||(A="h2, h3, h4, h5, h6"),0===(n=t(A)).length)return this;for(i(),o=document.querySelectorAll("[id]"),s=[].map.call(o,function(A){return A.id}),r=0;r<n.length;r++)if(this.hasAnchorJSLink(n[r]))p.push(r);else{if(n[r].hasAttribute("id"))a=n[r].getAttribute("id");else if(n[r].hasAttribute("data-anchor-id"))a=n[r].getAttribute("data-anchor-id");else{u=l=this.urlify(n[r].textContent),h=0;do{void 0!==c&&(u=l+"-"+h),c=s.indexOf(u),h+=1}while(-1!==c);c=void 0,s.push(u),n[r].setAttribute("id",u),a=u}a.replace(/-/g," "),(d=document.createElement("a")).className="anchorjs-link "+this.options.class,d.href="#"+a,d.setAttribute("aria-label",this.options.ariaLabel),d.setAttribute("data-anchorjs-icon",this.options.icon),"always"===f&&(d.style.opacity="1"),""===this.options.icon&&(d.style.font="1em/1 anchorjs-icons","left"===this.options.placement&&(d.style.lineHeight="inherit")),"left"===this.options.placement?(d.style.position="absolute",d.style.marginLeft="-1em",d.style.paddingRight="0.5em",n[r].insertBefore(d,n[r].firstChild)):(d.style.paddingLeft="0.375em",n[r].appendChild(d))}for(r=0;r<p.length;r++)n.splice(p[r]-r,1);return this.elements=this.elements.concat(n),this},this.remove=function(A){for(var e,i,n=t(A),o=0;o<n.length;o++)(i=n[o].querySelector(".anchorjs-link"))&&(-1!==(e=this.elements.indexOf(n[o]))&&this.elements.splice(e,1),n[o].removeChild(i));return this},this.removeAll=function(){this.remove(this.elements)},this.urlify=function(A){var t=/[& +$,:;=?@"#{}|^~[`%!'<>\]\.\/\(\)\*\\]/g;return this.options.truncate||e(this.options),A.trim().replace(/\'/gi,"").replace(t,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&(" "+A.firstChild.className+" ").indexOf(" anchorjs-link ")>-1,t=A.lastChild&&(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ")>-1;return e||t||!1}}}); </script>
|
67
|
+
|
68
|
+
<script>
|
69
|
+
$(document).ready(function() {
|
70
|
+
$('[id^=toc]').each(function ()
|
71
|
+
{
|
72
|
+
var currentToc = $(this);
|
73
|
+
var url = window.location.href;
|
74
|
+
currentToc.wrap("<a href='" + url + "#" + currentToc.attr("id") + "' </a>");
|
75
|
+
});
|
76
|
+
});
|
77
|
+
anchors.options = {
|
78
|
+
placement: 'left'
|
79
|
+
};
|
80
|
+
anchors.add('h1, h2, h3, h4');
|
81
|
+
</script>
|
82
|
+
|
@@ -0,0 +1,70 @@
|
|
1
|
+
<script>
|
2
|
+
//TOC generation
|
3
|
+
$('#toc').toc({
|
4
|
+
'selectors': 'h1,h2:not(.TermNum)', //elements to use as headings
|
5
|
+
'container': 'main', //element to find all selectors in
|
6
|
+
'smoothScrolling': true, //enable or disable smooth scrolling on click
|
7
|
+
'prefix': 'toc', //prefix for anchor tags and class names
|
8
|
+
'onHighlight': function(el) {}, //called when a new section is highlighted
|
9
|
+
'highlightOnScroll': false, //add class to heading that is currently in focus
|
10
|
+
'highlightOffset': 100, //offset to trigger the next headline
|
11
|
+
'anchorName': function(i, heading, prefix) { //custom function for anchor name
|
12
|
+
return prefix+i;
|
13
|
+
},
|
14
|
+
'headerText': function(i, heading, $heading) { //custom function building the header-item text
|
15
|
+
return $heading.text();
|
16
|
+
},
|
17
|
+
'itemClass': function(i, heading, $heading, prefix) { // custom function for item class
|
18
|
+
return $heading[0].tagName.toLowerCase();
|
19
|
+
}
|
20
|
+
});
|
21
|
+
|
22
|
+
</script>
|
23
|
+
|
24
|
+
<script>
|
25
|
+
//TOC toggle animation
|
26
|
+
$('#toggle').on('click', function(){
|
27
|
+
if( $('nav').is(':visible') ) {
|
28
|
+
$('nav').animate({ 'left': '-353px' }, 'slow', function(){
|
29
|
+
$('nav').hide();
|
30
|
+
});
|
31
|
+
$('.container').animate({ 'padding-left': '31px' }, 'slow');
|
32
|
+
}
|
33
|
+
else {
|
34
|
+
$('nav').show();
|
35
|
+
$('nav').animate({ 'left': '0px' }, 'slow');
|
36
|
+
$('.container').animate({ 'padding-left': '360px' }, 'slow');
|
37
|
+
}
|
38
|
+
});
|
39
|
+
</script>
|
40
|
+
|
41
|
+
<script>
|
42
|
+
// Scroll to top button
|
43
|
+
window.onscroll = function() {scrollFunction()};
|
44
|
+
|
45
|
+
function scrollFunction() {
|
46
|
+
if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
|
47
|
+
document.getElementById("myBtn").style.display = "block";
|
48
|
+
} else {
|
49
|
+
document.getElementById("myBtn").style.display = "none";
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
// When the user clicks on the button, scroll to the top of the document
|
54
|
+
function topFunction() {
|
55
|
+
document.body.scrollTop = 0;
|
56
|
+
document.documentElement.scrollTop = 0;
|
57
|
+
}
|
58
|
+
</script>
|
59
|
+
|
60
|
+
<script>
|
61
|
+
$(document).ready(function() {
|
62
|
+
$('[id^=toc]').each(function ()
|
63
|
+
{
|
64
|
+
var currentToc = $(this);
|
65
|
+
var url = window.location.href;
|
66
|
+
currentToc.wrap("<a href='" + url + "#" + currentToc.attr("id") + "' </a>");
|
67
|
+
});
|
68
|
+
});
|
69
|
+
</script>
|
70
|
+
|
@@ -0,0 +1,142 @@
|
|
1
|
+
<h1 class="AbstractTitle">Authority</h1>
|
2
|
+
|
3
|
+
<p class=MsoNormal align=left style='margin-bottom:12.0pt;text-align:left;
|
4
|
+
mso-pagination:widow-orphan;mso-hyphenate:auto;mso-layout-grid-align:auto;
|
5
|
+
mso-vertical-align-alt:auto'><span lang=EN-US style='mso-bidi-font-size:11.0pt;
|
6
|
+
mso-bidi-font-family:Arial'>This publication has been developed by NIST in
|
7
|
+
accordance with its statutory responsibilities under the Federal Information
|
8
|
+
Security Modernization Act (FISMA) of 2014, 44 <span class=SpellE>U.S.C</span>.
|
9
|
+
§ 3551 <i style='mso-bidi-font-style:normal'>et seq.</i>, Public Law (<span
|
10
|
+
class=SpellE>P.L</span>.) 113-283. NIST is responsible for developing
|
11
|
+
information security standards and guidelines, including minimum requirements
|
12
|
+
for federal information systems, but such standards and guidelines shall not
|
13
|
+
apply to national security systems without the express approval of appropriate federal
|
14
|
+
officials exercising policy authority over such systems. This guideline is
|
15
|
+
consistent with the requirements of the Office of Management and Budget (OMB)
|
16
|
+
Circular A-130.<o:p></o:p></span></p>
|
17
|
+
|
18
|
+
<p class=MsoNormal align=left style='margin-bottom:12.0pt;text-align:left;
|
19
|
+
mso-pagination:widow-orphan;mso-hyphenate:auto;mso-layout-grid-align:auto;
|
20
|
+
mso-vertical-align-alt:auto'><span lang=EN-US style='mso-bidi-font-size:11.0pt;
|
21
|
+
mso-bidi-font-family:Arial'>Nothing in this publication should be taken to
|
22
|
+
contradict the standards and guidelines made mandatory and binding on federal
|
23
|
+
agencies by the Secretary of Commerce under statutory authority. Nor should
|
24
|
+
these guidelines be interpreted as altering or superseding the existing
|
25
|
+
authorities of the Secretary of Commerce, Director of the OMB, or any other federal
|
26
|
+
official.<span style='mso-spacerun:yes'> </span>This publication may be used
|
27
|
+
by nongovernmental organizations on a voluntary basis and is not subject to
|
28
|
+
copyright in the United States. Attribution would, however, be appreciated by
|
29
|
+
NIST.</span><span lang=EN-US style='mso-bidi-font-size:11.0pt;font-family:"Arial",sans-serif'><o:p></o:p></span></p>
|
30
|
+
|
31
|
+
<p class=MsoNormal align=center style='margin-bottom:12.0pt;text-align:center;
|
32
|
+
line-height:90%'><span lang=EN-US style='font-size:11.0pt;line-height:
|
33
|
+
90%;font-family:"Arial",sans-serif'>National Institute of Standards and
|
34
|
+
Technology {{ docnumber }}<br></span>
|
35
|
+
<span lang=EN-US style='font-size:10.0pt;line-height:90%;font-family:
|
36
|
+
"Arial",sans-serif;mso-bidi-font-weight:bold'>Natl. Inst. Stand. Technol.
|
37
|
+
{{ docnumber }}, <!--[if supportFields]><span
|
38
|
+
lang=EN-AU style='font-size:10.0pt;mso-ansi-language:EN-AU'><span
|
39
|
+
style='mso-element:field-begin'></span><span style='mso-spacerun:yes'> </span>NUMPAGES<span
|
40
|
+
style='mso-spacerun:yes'> </span>\* MERGEFORMAT <span style='mso-element:field-separator'></span></span><![endif]--><span
|
41
|
+
style='mso-no-proof:yes'>26</span><!--[if supportFields]><span
|
42
|
+
lang=EN-AU style='font-size:10.0pt;mso-ansi-language:EN-AU'><span
|
43
|
+
style='mso-element:field-end'></span></span><![endif]--> pages ({{ revdate_monthyear }})<br>
|
44
|
+
<span class=SpellE><span style='color:black'>CODEN</span></span><span
|
45
|
+
style='color:black'>: NSPUE2<o:p></o:p></span></span></p>
|
46
|
+
|
47
|
+
{% if url %}
|
48
|
+
<p class=MsoHeader align=center style='text-align:center;line-height:90%;
|
49
|
+
tab-stops:36.0pt'><span lang=EN-US style='font-size:10.0pt;line-height:90%;
|
50
|
+
font-family:"Arial",sans-serif;color:black;mso-themecolor:text1'>This
|
51
|
+
publication is available free of charge from:<br>
|
52
|
+
</span><span lang=EN-US style='font-size:10.0pt;line-height:90%;font-family:
|
53
|
+
"Arial",sans-serif'>{{ url }}</span><b><span lang=EN-US
|
54
|
+
style='mso-bidi-font-size:11.0pt;line-height:90%;font-family:"Arial",sans-serif;
|
55
|
+
color:black;mso-themecolor:text1'><o:p></o:p></span></b></p>
|
56
|
+
{% endif %}
|
57
|
+
<p class=MsoNormal align=center style='margin-bottom:12.0pt;text-align:center;
|
58
|
+
line-height:90%'><span lang=EN-US style='font-size:10.0pt;line-height:90%;
|
59
|
+
font-family:"Arial",sans-serif;color:black'><o:p> </o:p></span></p>
|
60
|
+
|
61
|
+
<div style='mso-element:para-border-div;border:solid black 1.0pt;padding:8.0pt 8.0pt 8.0pt 8.0pt;
|
62
|
+
background:#D9D9D9'>
|
63
|
+
|
64
|
+
<p class=MsoNormal align=left style='margin-top:6.0pt;margin-right:0cm;
|
65
|
+
margin-bottom:6.0pt;margin-left:0cm;text-align:left;mso-pagination:widow-orphan;
|
66
|
+
mso-hyphenate:auto;background:#D9D9D9;mso-layout-grid-align:auto;mso-vertical-align-alt:
|
67
|
+
auto;border:none;mso-border-alt:solid black 1.0pt;padding:0cm;mso-padding-alt:
|
68
|
+
8.0pt 8.0pt 8.0pt 8.0pt'><span lang=EN-US style='font-size:10.0pt;mso-bidi-font-size:
|
69
|
+
12.0pt;mso-bidi-font-family:Arial'>Certain commercial entities, equipment, or
|
70
|
+
materials may be identified in this document in order to describe an
|
71
|
+
experimental procedure or concept adequately. Such identification is not
|
72
|
+
intended to imply recommendation or endorsement by NIST, nor is it intended to
|
73
|
+
imply that the entities, materials, or equipment are necessarily the best
|
74
|
+
available for the purpose. <o:p></o:p></span></p>
|
75
|
+
|
76
|
+
<p class=MsoNormal align=left style='margin-top:6.0pt;margin-right:0cm;
|
77
|
+
margin-bottom:6.0pt;margin-left:0cm;text-align:left;mso-pagination:widow-orphan;
|
78
|
+
mso-hyphenate:auto;background:#D9D9D9;mso-layout-grid-align:auto;mso-vertical-align-alt:
|
79
|
+
auto;border:none;mso-border-alt:solid black 1.0pt;padding:0cm;mso-padding-alt:
|
80
|
+
8.0pt 8.0pt 8.0pt 8.0pt'><span lang=EN-US style='font-size:10.0pt;mso-bidi-font-size:
|
81
|
+
12.0pt;mso-bidi-font-family:Arial'>There may be references in this publication
|
82
|
+
to other publications currently under development by NIST in accordance with
|
83
|
+
its assigned statutory responsibilities. The information in this publication,
|
84
|
+
including concepts and methodologies, may be used by federal agencies even
|
85
|
+
before the completion of such companion publications. Thus, until each
|
86
|
+
publication is completed, current requirements, guideline<span
|
87
|
+
style='color:black'>s, a</span>nd procedures, where they exist, remain
|
88
|
+
operative. For planning and transition purposes, federal agencies may wish to
|
89
|
+
closely follow the development of these new publications by NIST.<span
|
90
|
+
style='mso-spacerun:yes'> </span><o:p></o:p></span></p>
|
91
|
+
|
92
|
+
<p class=MsoNormal align=left style='margin-bottom:12.0pt;text-align:left;
|
93
|
+
line-height:90%;background:#D9D9D9;border:none;mso-border-alt:solid black 1.0pt;
|
94
|
+
padding:0cm;mso-padding-alt:8.0pt 8.0pt 8.0pt 8.0pt'><span lang=EN-US
|
95
|
+
style='font-size:10.0pt;mso-bidi-font-size:12.0pt;line-height:90%'>Organizations
|
96
|
+
are encouraged to review all draft publications during public comment periods
|
97
|
+
and provide feedback to NIST. Many NIST cybersecurity publications<span
|
98
|
+
style='color:black'>, ot</span>her than the ones noted above, are available at <u><span
|
99
|
+
style='color:blue'><a href="https://csrc.nist.gov/publications"
|
100
|
+
title="NIST Computer Security Division publications">https://csrc.nist.gov/publications</a></span></u>.</span><b><span
|
101
|
+
lang=EN-US style='font-size:12.0pt;mso-bidi-font-size:11.0pt;line-height:90%;
|
102
|
+
font-family:"Arial",sans-serif;color:black'><o:p></o:p></span></b></p>
|
103
|
+
|
104
|
+
</div>
|
105
|
+
|
106
|
+
<p class=MsoNormal align=center style='margin-bottom:6.0pt;text-align:center'><b><span
|
107
|
+
lang=EN-US style='font-size:11.0pt;font-family:"Arial",sans-serif'>Comments
|
108
|
+
on this publication may be submitted to:</span></b><b style='mso-bidi-font-weight:
|
109
|
+
normal'><span lang=EN-US style='mso-bidi-font-size:11.0pt;font-family:"Arial",sans-serif'><o:p></o:p></span></b></p>
|
110
|
+
|
111
|
+
<p class=MsoNormal align=center style='margin-bottom:12.0pt;text-align:center'><span
|
112
|
+
lang=EN-US style='font-size:10.0pt;font-family:"Arial",sans-serif'>National
|
113
|
+
Institute of Standards and Technology<br>
|
114
|
+
Attn: Computer Security Division, Information Technology Laboratory<br>
|
115
|
+
100 Bureau Drive (Mail Stop 8930) Gaithersburg, MD 20899-8930<br>
|
116
|
+
Email: <span class=MsoHyperlink><a href="mailto:{{ email }}">{{ email }}</a></span><o:p></o:p></span></p>
|
117
|
+
|
118
|
+
<p class=MsoNormal align=center style='margin-bottom:12.0pt;text-align:center'><span
|
119
|
+
lang=EN-US style='font-size:11.0pt;font-family:"Arial",sans-serif'>All
|
120
|
+
comments are subject to release under the Freedom of Information Act (FOIA).<o:p></o:p></span></p>
|
121
|
+
|
122
|
+
<p><span lang=EN-US style='font-size:11.0pt;mso-bidi-font-size:11.0pt;font-family:
|
123
|
+
"Times New Roman",serif;mso-fareast-font-family:"Times New Roman";mso-ansi-language:
|
124
|
+
EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA'><br clear=all style='page-break-before:always;'></span></p>
|
125
|
+
|
126
|
+
<h1 class="IntroTitle">Reports on Computer Systems Technology</h1>
|
127
|
+
|
128
|
+
<p class=MsoNormal align=left style='margin-bottom:12.0pt;text-align:left'><span
|
129
|
+
lang=EN-US style='font-size:12.0pt'>The Information Technology Laboratory (<span
|
130
|
+
class=SpellE>ITL</span>) at the National Institute of Standards and Technology
|
131
|
+
(NIST) promotes the U.S. economy and public welfare by providing technical
|
132
|
+
leadership for the Nation’s measurement and standards infrastructure. <span
|
133
|
+
class=SpellE>ITL</span> develops tests, test methods, reference data, proof of
|
134
|
+
concept implementations, and technical analyses to advance the development and
|
135
|
+
productive use of information technology. <span class=SpellE>ITL’s</span>
|
136
|
+
responsibilities include the development of management, administrative,
|
137
|
+
technical, and physical standards and guidelines for the cost-effective
|
138
|
+
security and privacy of other than national security-related information in federal
|
139
|
+
information systems. The Special Publication 800-series reports on <span
|
140
|
+
class=SpellE>ITL’s</span> research, guidelines, and outreach efforts in
|
141
|
+
information system security, and its collaborative activities with industry,
|
142
|
+
government, and academic organizations.<o:p></o:p></span></p>
|
@@ -0,0 +1,247 @@
|
|
1
|
+
<p class="ReportNumber"><span lang="EN-US">{{ docnumber_long }}
|
2
|
+
{% if draftinfo %}
|
3
|
+
<br/>{{ draftinfo }}
|
4
|
+
{% endif %}
|
5
|
+
<o:p></o:p></span></p>
|
6
|
+
|
7
|
+
<div style='mso-element:para-border-div;border:none;border-top:double windowtext 4.5pt;
|
8
|
+
mso-border-top-alt:thin-thick-small-gap windowtext 4.5pt;padding:6.0pt 0cm 0cm 0cm'>
|
9
|
+
|
10
|
+
<p class="CoverTitle"><span lang="EN-US">{{ doctitle }}
|
11
|
+
<o:p></o:p></span></p>
|
12
|
+
|
13
|
+
{% if docsubtitle %}
|
14
|
+
<p class="CoverSubtitle"><span lang="EN-US">{{ docsubtitle }}<o:p></o:p></span></p>
|
15
|
+
{% endif %}
|
16
|
+
|
17
|
+
<div style='mso-element:para-border-div;border:none;border-top:solid black 1.5pt;
|
18
|
+
mso-border-top-themecolor:text1;padding:1.0pt 0cm 0cm 0cm'>
|
19
|
+
|
20
|
+
<p class="MsoNormal" style='border:none;mso-border-top-alt:solid black 1.5pt;
|
21
|
+
mso-border-top-themecolor:text1;padding:0cm;mso-padding-alt:1.0pt 0cm 0cm 0cm'><span
|
22
|
+
lang="EN-US" style='font-size:14.0pt;color:black;mso-themecolor:text1'> <o:p></o:p></span></p>
|
23
|
+
|
24
|
+
</div>
|
25
|
+
|
26
|
+
{% for author in authors %}
|
27
|
+
<p class="Author">{{ author }}</p>
|
28
|
+
{% endfor %}
|
29
|
+
|
30
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
31
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
32
|
+
lang="EN-US" style='font-size:14.0pt;color:black'> <o:p></o:p></span></p>
|
33
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
34
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
35
|
+
lang="EN-US" style='font-size:14.0pt;color:black'> <o:p></o:p></span></p>
|
36
|
+
|
37
|
+
|
38
|
+
{% if url %}
|
39
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
40
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
41
|
+
lang="EN-US" style='font-size:14.0pt;color:black'>This publication is available
|
42
|
+
free of charge from:<o:p></o:p></span></p>
|
43
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
44
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
45
|
+
lang="EN-US" style='font-size:14.0pt;color:black'>{{ url }}<o:p></o:p></span></p>
|
46
|
+
|
47
|
+
{% endif %}
|
48
|
+
|
49
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
50
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
51
|
+
lang="EN-US" style='font-size:14.0pt;color:black'> <o:p></o:p></span></p>
|
52
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
53
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
54
|
+
lang="EN-US" style='font-size:14.0pt;color:black'> <o:p></o:p></span></p>
|
55
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
56
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
57
|
+
lang="EN-US" style='font-size:14.0pt;color:black'> <o:p></o:p></span></p>
|
58
|
+
|
59
|
+
|
60
|
+
<div style='mso-element:para-border-div;border-top:solid windowtext 1.5pt;
|
61
|
+
border-left:none;border-bottom:solid windowtext 1.5pt;border-right:none;
|
62
|
+
padding:1.0pt 0cm 1.0pt 0cm'>
|
63
|
+
|
64
|
+
<p class="MsoNormal" align="center" style='text-align:center;border:none;
|
65
|
+
mso-border-top-alt:solid windowtext 1.5pt;mso-border-bottom-alt:solid windowtext 1.5pt;
|
66
|
+
padding:0cm;mso-padding-alt:1.0pt 0cm 1.0pt 0cm'><span lang="EN-US"
|
67
|
+
style='font-size:16.0pt;font-family:"Arial",sans-serif;mso-ansi-language:EN-US;letter-spacing:10.0pt'>{{ tc }}<o:p></o:p></span></p>
|
68
|
+
|
69
|
+
</div>
|
70
|
+
|
71
|
+
<p class="MsoNormal"><span lang="EN-US" style='font-size:14.0pt'><span
|
72
|
+
style='mso-spacerun:yes'> </span><o:p></o:p></span></p>
|
73
|
+
|
74
|
+
<p class="MsoNormal" style='margin-bottom:0cm;margin-bottom:.0001pt'><v:shapetype
|
75
|
+
id="_x0000_t75" coordsize="21600,21600" o:spt="75" o:preferrelative="t"
|
76
|
+
path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
|
77
|
+
<v:stroke joinstyle="miter"/>
|
78
|
+
<v:formulas>
|
79
|
+
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
|
80
|
+
<v:f eqn="sum @0 1 0"/>
|
81
|
+
<v:f eqn="sum 0 0 @1"/>
|
82
|
+
<v:f eqn="prod @2 1 2"/>
|
83
|
+
<v:f eqn="prod @3 21600 pixelWidth"/>
|
84
|
+
<v:f eqn="prod @3 21600 pixelHeight"/>
|
85
|
+
<v:f eqn="sum @0 0 1"/>
|
86
|
+
<v:f eqn="prod @6 1 2"/>
|
87
|
+
<v:f eqn="prod @7 21600 pixelWidth"/>
|
88
|
+
<v:f eqn="sum @8 21600 0"/>
|
89
|
+
<v:f eqn="prod @7 21600 pixelHeight"/>
|
90
|
+
<v:f eqn="sum @10 21600 0"/>
|
91
|
+
</v:formulas>
|
92
|
+
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
|
93
|
+
<o:lock v:ext="edit" aspectratio="t"/>
|
94
|
+
</v:shapetype><v:shape id="image_x0020_2" o:spid="_x0000_s1026" type="#_x0000_t75"
|
95
|
+
alt="NIST Identifier: NIST, National Institute of Standards and Technology, U.S. Department of Commerce"
|
96
|
+
style='position:absolute;margin-left:127.95pt;margin-top:0;width:179.15pt;
|
97
|
+
height:75.95pt;z-index:251659264;visibility:visible;mso-wrap-style:square;
|
98
|
+
mso-width-percent:0;mso-height-percent:0;mso-wrap-distance-left:12pt;
|
99
|
+
mso-wrap-distance-top:0;mso-wrap-distance-right:12pt;
|
100
|
+
mso-wrap-distance-bottom:0;mso-position-horizontal:right;
|
101
|
+
mso-position-horizontal-relative:text;mso-position-vertical:bottom;
|
102
|
+
mso-position-vertical-relative:margin;mso-width-percent:0;
|
103
|
+
mso-height-percent:0;mso-width-relative:page;mso-height-relative:page'
|
104
|
+
o:allowoverlap="f">
|
105
|
+
<v:imagedata src="logo.png"
|
106
|
+
o:title=" NIST, National Institute of Standards and Technology, U.S"/>
|
107
|
+
<o:lock v:ext="edit" aspectratio="f"/>
|
108
|
+
<w:wrap type="square" anchory="margin"/>
|
109
|
+
</v:shape></p>
|
110
|
+
|
111
|
+
|
112
|
+
</div>
|
113
|
+
|
114
|
+
<div>
|
115
|
+
|
116
|
+
<span lang="EN-US" style='font-size:14.0pt;font-family:"Times New Roman",serif;
|
117
|
+
mso-fareast-font-family:"Times New Roman";mso-ansi-language:EN-US;mso-fareast-language:
|
118
|
+
EN-US;mso-bidi-language:AR-SA'><br clear="all" style='page-break-before:always;'/>
|
119
|
+
</span>
|
120
|
+
|
121
|
+
<p class="MsoNormal" align="right" style='text-align:right;line-height:90%;
|
122
|
+
mso-pagination:widow-orphan;mso-hyphenate:auto;mso-layout-grid-align:auto;
|
123
|
+
mso-vertical-align-alt:auto'><b style='mso-bidi-font-weight:normal'><span
|
124
|
+
lang="EN-US" style='font-size:20.0pt;mso-bidi-font-size:12.0pt;line-height:90%'>
|
125
|
+
{{ docnumber_long }}
|
126
|
+
{% if draftinfo %}
|
127
|
+
<br/>{{ draftinfo }}
|
128
|
+
{% endif %}
|
129
|
+
<o:p></o:p></span></b></p>
|
130
|
+
|
131
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
132
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
133
|
+
lang="EN-US" style='font-size:14.0pt;color:black'> <o:p></o:p></span></p>
|
134
|
+
|
135
|
+
<p class="CxSpMiddle" align="right" style='margin-top:18.0pt;margin-right:
|
136
|
+
0cm;margin-bottom:6.0pt;margin-left:0cm;mso-add-space:auto;text-align:right'><b
|
137
|
+
style='mso-bidi-font-weight:normal'><span lang="EN-US" style='font-size:28.0pt;
|
138
|
+
mso-bidi-font-size:12.0pt;color:black;position:relative;top:-4.0pt;mso-text-raise:
|
139
|
+
4.0pt;letter-spacing:-.5pt;mso-font-kerning:10.0pt'>{{ doctitle }}<o:p></o:p></span></b></p>
|
140
|
+
|
141
|
+
{% if docsubtitle %}
|
142
|
+
<p class="CxSpMiddle" align="right" style='margin-top:18.0pt;margin-right:
|
143
|
+
0cm;margin-bottom:6.0pt;margin-left:0cm;mso-add-space:auto;text-align:right'><i
|
144
|
+
style='mso-bidi-font-weight:normal'><span lang="EN-US" style='font-size:18.0pt;
|
145
|
+
mso-bidi-font-size:12.0pt;color:black;position:relative'>{{ docsubtitle }}<o:p></o:p></span></i></p>
|
146
|
+
{% endif %}
|
147
|
+
|
148
|
+
</div>
|
149
|
+
|
150
|
+
<span lang="EN-US" style='font-size:14.0pt;font-family:"Times New Roman",serif;
|
151
|
+
mso-fareast-font-family:"Times New Roman";mso-ansi-language:EN-US;mso-fareast-language:
|
152
|
+
EN-US;mso-bidi-language:AR-SA;margin-bottom:0.0pt'><br clear="all" style='page-break-before:auto;'/>
|
153
|
+
</span>
|
154
|
+
|
155
|
+
<div>
|
156
|
+
|
157
|
+
{% for author in authors %}
|
158
|
+
<p class="Author">{{ author }}</p>
|
159
|
+
{% endfor %}
|
160
|
+
|
161
|
+
</div>
|
162
|
+
|
163
|
+
<span lang="EN-US" style='font-size:14.0pt;font-family:"Times New Roman",serif;
|
164
|
+
mso-fareast-font-family:"Times New Roman";color:black;mso-ansi-language:EN-US;
|
165
|
+
mso-fareast-language:EN-US;mso-bidi-language:AR-SA;margin-bottom:0.0pt'><br clear="all"
|
166
|
+
style='page-break-before:auto;'/>
|
167
|
+
</span>
|
168
|
+
|
169
|
+
|
170
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
171
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
172
|
+
lang="EN-US" style='font-size:14.0pt;color:black'> <o:p></o:p></span></p>
|
173
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
174
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
175
|
+
lang="EN-US" style='font-size:14.0pt;color:black'> <o:p></o:p></span></p>
|
176
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
177
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
178
|
+
lang="EN-US" style='font-size:14.0pt;color:black'> <o:p></o:p></span></p>
|
179
|
+
|
180
|
+
{% if url %}
|
181
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
182
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
183
|
+
lang="EN-US" style='font-size:14.0pt;color:black'>This publication is available
|
184
|
+
free of charge from:<o:p></o:p></span></p>
|
185
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
186
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
187
|
+
lang="EN-US" style='font-size:14.0pt;color:black'>{{ url }}<o:p></o:p></span></p>
|
188
|
+
{% endif %}
|
189
|
+
|
190
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
191
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
192
|
+
lang="EN-US" style='font-size:14.0pt;color:black'> <o:p></o:p></span></p>
|
193
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
194
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
195
|
+
lang="EN-US" style='font-size:14.0pt;color:black'> <o:p></o:p></span></p>
|
196
|
+
|
197
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
198
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
199
|
+
lang="EN-US" style='font-size:14.0pt;color:black'>{{ revdate_monthyear }}<o:p></o:p></span></p>
|
200
|
+
|
201
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
202
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
203
|
+
lang="EN-US" style='font-size:14.0pt;color:black'> <o:p></o:p></span></p>
|
204
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
205
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
206
|
+
lang="EN-US" style='font-size:14.0pt;color:black'> <o:p></o:p></span></p>
|
207
|
+
|
208
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
209
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'>
|
210
|
+
<img width="91" height="90"
|
211
|
+
src="deptofcommerce.png"
|
212
|
+
alt="Seal of the U.S. Department of Commerce"/>
|
213
|
+
</p>
|
214
|
+
|
215
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
216
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
217
|
+
lang="EN-US" style='font-size:11.0pt;color:black'> <o:p></o:p></span></p>
|
218
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
219
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
220
|
+
lang="EN-US" style='font-size:11.0pt;color:black'> <o:p></o:p></span></p>
|
221
|
+
|
222
|
+
|
223
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
224
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
225
|
+
lang="EN-US" style='font-size:11.0pt;color:black'
|
226
|
+
>U.S. Department of Commerce<o:p></o:p></span></p>
|
227
|
+
|
228
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
229
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><i><span
|
230
|
+
lang="EN-US" style='font-size:10.0pt;color:black'
|
231
|
+
>Wilbur L. Ross, Jr., Secretary<o:p></o:p></span></i></p>
|
232
|
+
|
233
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
234
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
235
|
+
lang="EN-US" style='font-size:10.0pt;color:black'> <o:p></o:p></span></p>
|
236
|
+
|
237
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
238
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><span
|
239
|
+
lang="EN-US" style='font-size:10.0pt;color:black'
|
240
|
+
>National Institute of Standards and Technology <o:p></o:p></span></p>
|
241
|
+
|
242
|
+
<p class="MsoNormal" align="right" style='text-align:right;mso-pagination:widow-orphan;
|
243
|
+
mso-hyphenate:auto;text-autospace:none;mso-vertical-align-alt:auto;margin-bottom:0.0pt'><i><span
|
244
|
+
lang="EN-US" style='font-size:10.0pt;color:black'
|
245
|
+
>Walter Copan, NIST Director and Under Secretary of Commerce for Standards and Technology</span></i><b><span
|
246
|
+
lang="EN-US" style='font-size:10.0pt'><o:p></o:p></span></b></p>
|
247
|
+
|