aboutsummaryrefslogtreecommitdiff
path: root/cipher.sts
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2020-10-17 17:36:16 +0300
committerAleksey Veresov <aleksey@veresov.pro>2020-10-17 17:36:16 +0300
commita5a57f9386ce54d37c3b7de31db669b0f5236bf0 (patch)
treebc6adbd6a4e0f3eb8ad01ffb6cfed382dedea407 /cipher.sts
parent53ccfab6c1f2ddad977ceedbdbbfa54a05b81070 (diff)
downloadcryptrobber-a5a57f9386ce54d37c3b7de31db669b0f5236bf0.tar
cryptrobber-a5a57f9386ce54d37c3b7de31db669b0f5236bf0.tar.xz
cryptrobber-a5a57f9386ce54d37c3b7de31db669b0f5236bf0.zip
.
Diffstat (limited to 'cipher.sts')
-rw-r--r--cipher.sts14
1 files changed, 7 insertions, 7 deletions
diff --git a/cipher.sts b/cipher.sts
index d351397..cdcdc30 100644
--- a/cipher.sts
+++ b/cipher.sts
@@ -1,10 +1,10 @@
defword cipher
- 3 ref as byte
- 2 get as password
- 1 get as plen
- 0 get as pos
- pos @ password + @ byte @ xor byte !
- pos @ 1 + pos !
- pos @ plen = if 0 pos ! fi
+ 3 ref as cipher.byte
+ 2 get as cipher.password
+ 1 get as cipher.len
+ 0 get as cipher.pos
+ cipher.pos @ cipher.password + @ cipher.byte @ xor cipher.byte !
+ cipher.pos @ 1 + cipher.pos !
+ cipher.pos @ cipher.len = if 0 cipher.pos ! fi
drop drop drop
exit