aboutsummaryrefslogtreecommitdiffstats
path: root/server/resty/session/ciphers/none.lua
diff options
context:
space:
mode:
Diffstat (limited to 'server/resty/session/ciphers/none.lua')
-rw-r--r--server/resty/session/ciphers/none.lua15
1 files changed, 0 insertions, 15 deletions
diff --git a/server/resty/session/ciphers/none.lua b/server/resty/session/ciphers/none.lua
deleted file mode 100644
index b29bb88..0000000
--- a/server/resty/session/ciphers/none.lua
+++ /dev/null
@@ -1,15 +0,0 @@
-local cipher = {}
-
-function cipher.new()
- return cipher
-end
-
-function cipher.encrypt(_, data, _, _)
- return data
-end
-
-function cipher.decrypt(_, data, _, _, _)
- return data
-end
-
-return cipher