From e51fb935bf27ce56282d8bd9b33f708d2e660449 Mon Sep 17 00:00:00 2001 From: Donald Stufft Date: Sun, 27 Oct 2013 17:26:17 -0400 Subject: Move the danger to the very top of the file --- docs/hazmat/bindings/index.rst | 6 +++--- docs/hazmat/bindings/openssl.rst | 6 +++--- docs/hazmat/primitives/cryptographic-hashes.rst | 6 +++--- docs/hazmat/primitives/index.rst | 6 +++--- docs/hazmat/primitives/symmetric-encryption.rst | 6 +++--- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/hazmat/bindings/index.rst b/docs/hazmat/bindings/index.rst index 163e82e8..4de2df47 100644 --- a/docs/hazmat/bindings/index.rst +++ b/docs/hazmat/bindings/index.rst @@ -1,6 +1,3 @@ -Bindings -======== - .. danger:: This is a "Hazardous Materials" module. You should **ONLY** use it if @@ -8,6 +5,9 @@ Bindings module is full of land mines, dragons, and dinosaurs with laser guns. +Bindings +======== + .. toctree:: :maxdepth: 1 diff --git a/docs/hazmat/bindings/openssl.rst b/docs/hazmat/bindings/openssl.rst index 04532466..00e8094a 100644 --- a/docs/hazmat/bindings/openssl.rst +++ b/docs/hazmat/bindings/openssl.rst @@ -1,6 +1,3 @@ -OpenSSL -======= - .. danger:: This is a "Hazardous Materials" module. You should **ONLY** use it if @@ -8,6 +5,9 @@ OpenSSL module is full of land mines, dragons, and dinosaurs with laser guns. +OpenSSL +======= + These are `CFFI`_ bindings to the `OpenSSL`_ C library. .. data:: cryptography.hazmat.bindings.openssl.backend diff --git a/docs/hazmat/primitives/cryptographic-hashes.rst b/docs/hazmat/primitives/cryptographic-hashes.rst index 72fd8692..de66b7fe 100644 --- a/docs/hazmat/primitives/cryptographic-hashes.rst +++ b/docs/hazmat/primitives/cryptographic-hashes.rst @@ -1,6 +1,3 @@ -Message Digests -=============== - .. danger:: This is a "Hazardous Materials" module. You should **ONLY** use it if @@ -8,6 +5,9 @@ Message Digests module is full of land mines, dragons, and dinosaurs with laser guns. +Message Digests +=============== + .. currentmodule:: cryptography.hazmat.primitives.hashes .. class:: BaseHash(data=None) diff --git a/docs/hazmat/primitives/index.rst b/docs/hazmat/primitives/index.rst index bd3ef410..6ae769a6 100644 --- a/docs/hazmat/primitives/index.rst +++ b/docs/hazmat/primitives/index.rst @@ -1,6 +1,3 @@ -Primitives -========== - .. danger:: This is a "Hazardous Materials" module. You should **ONLY** use it if @@ -8,6 +5,9 @@ Primitives module is full of land mines, dragons, and dinosaurs with laser guns. +Primitives +========== + .. toctree:: :maxdepth: 1 diff --git a/docs/hazmat/primitives/symmetric-encryption.rst b/docs/hazmat/primitives/symmetric-encryption.rst index e65e48d4..758a4648 100644 --- a/docs/hazmat/primitives/symmetric-encryption.rst +++ b/docs/hazmat/primitives/symmetric-encryption.rst @@ -1,6 +1,3 @@ -Symmetric Encryption -==================== - .. danger:: This is a "Hazardous Materials" module. You should **ONLY** use it if @@ -8,6 +5,9 @@ Symmetric Encryption module is full of land mines, dragons, and dinosaurs with laser guns. +Symmetric Encryption +==================== + .. currentmodule:: cryptography.hazmat.primitives.block .. testsetup:: -- cgit v1.2.3 ?id=b9c503085191ea1fb0f9d80c7d083e316e9f0f7c'>TempDataLogger/TempLogHostApp/COPYING.LESSER.txt
blob: bdf8db0eeda4d4093540787717c7846b051460a3 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166