Implement glance memcache security strategy

Provides an option to authenticate and optionally encrypt the token
data stored in the cache:
memcache_security_strategy = MAC/ENCRYPT
memcache_secret_key = secret_key

Change-Id: I1ba1f4fa61684d3dd5f0aa1478044e0f46b7cffc
Related-Prod: PROD-22099
diff --git a/README.rst b/README.rst
index 6e96364..f050338 100644
--- a/README.rst
+++ b/README.rst
@@ -446,6 +446,26 @@
 You can read more about it here:
     https://docs.openstack.org/security-guide/databases/database-access-control.html
 
+Glance services on controller node with memcached caching and security strategy:
+
+.. code-block:: yaml
+
+    glance:
+      server:
+        enabled: true
+        ...
+        cache:
+          engine: memcached
+          members:
+          - host: 127.0.0.1
+            port: 11211
+          - host: 127.0.0.1
+            port: 11211
+          security:
+            enabled: true
+            strategy: ENCRYPT
+            secret_key: secret
+
 Usage
 =====