Implement panko 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: I70758868fb3cd1f78a4b5410baec2d509ebca105
Related-Prod: PROD-22099
diff --git a/README.rst b/README.rst
index f1b324d..2d563ef 100644
--- a/README.rst
+++ b/README.rst
@@ -117,6 +117,25 @@
 You can read more about it here:
     https://docs.openstack.org/security-guide/databases/database-access-control.html
 
+Panko server with memcached caching and security strategy:
+--------------------
+.. code-block:: yaml
+
+    panko:
+      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
 More information
 ================