summaryrefslogtreecommitdiff
path: root/docs/topics/signing.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics/signing.txt')
-rw-r--r--docs/topics/signing.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/signing.txt b/docs/topics/signing.txt
index 6e4a61d2c4..c862995633 100644
--- a/docs/topics/signing.txt
+++ b/docs/topics/signing.txt
@@ -5,14 +5,14 @@ Cryptographic signing
.. module:: django.core.signing
:synopsis: Django's signing framework.
-The golden rule of Web application security is to never trust data from
+The golden rule of web application security is to never trust data from
untrusted sources. Sometimes it can be useful to pass data through an
untrusted medium. Cryptographically signed values can be passed through an
untrusted channel safe in the knowledge that any tampering will be detected.
Django provides both a low-level API for signing values and a high-level API
for setting and reading signed cookies, one of the most common uses of
-signing in Web applications.
+signing in web applications.
You may also find signing useful for the following: