From 66d0da8f0d09218bfd20faa64958de8fadd17ddd Mon Sep 17 00:00:00 2001 From: Sascha Schulz <sschulz@dh-software.de> Date: Mo, 08 Jul 2024 16:16:13 +0200 Subject: [PATCH] add xor-encryption example --- templates/010-nodejs/xor-encryption.js | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/templates/010-nodejs/xor-encryption.js b/templates/010-nodejs/xor-encryption.js new file mode 100644 index 0000000..308b10d --- /dev/null +++ b/templates/010-nodejs/xor-encryption.js @@ -0,0 +1,3 @@ +const word = Buffer.from("abcdef"); +const key = Buffer.from("xyz"); + -- Gitblit v1.9.3