Caesar cipher: Difference between revisions

m
syntax highlighting fixup automation
m (syntax highlighting fixup automation)
Line 25:
 
=={{header|11l}}==
<langsyntaxhighlight lang=11l>F caesar(string, =key, decode = 0B)
I decode
key = 26 - key
Line 44:
V enc = caesar(msg, 11)
print(enc)
print(caesar(enc, 11, decode' 1B))</langsyntaxhighlight>
{{out}}
<pre>
Line 54:
=={{header|360 Assembly}}==
A good example of the use of TR instruction to translate a character.
<langsyntaxhighlight lang=360asm>* Caesar cypher 04/01/2019
CAESARO PROLOG
XPRNT PHRASE,L'PHRASE print phrase
Line 83:
ORG
YREGS
END CAESARO</langsyntaxhighlight>
{{out}}
<pre>
Line 92:
 
=={{header|8th}}==
<langsyntaxhighlight lang=forth>\ Ensure the output char is in the correct range:
: modulate \ char base -- char
tuck n:- 26 n:+ 26 n:mod n:+ ;
Line 114:
1 caesar dup . cr
-1 caesar . cr
bye</langsyntaxhighlight>
{{out}}
<pre>
Line 123:
 
=={{header|Action!}}==
<langsyntaxhighlight lang=Action!>CHAR FUNC Shift(CHAR c BYTE code)
CHAR base
 
Line 165:
Test("The quick brown fox jumps over the lazy dog.",23)
Test("The quick brown fox jumps over the lazy dog.",5)
RETURN</langsyntaxhighlight>
{{out}}
[https://gitlab.com/amarok8bit/action-rosetta-code/-/raw/master/images/Caesar_cipher.png Screenshot from Atari 8-bit computer]
Line 185:
 
=={{header|Ada}}==
<langsyntaxhighlight lang=Ada>with Ada.Text_IO;
 
procedure Caesar is
Line 229:
Ada.Text_IO.Put_Line("Decrypted Ciphertext ->" & crypt(Text, -Key));
 
end Caesar;</langsyntaxhighlight>
{{out}}
<pre>> ./caesar
Line 242:
{{works with|ALGOL 68G|Any - tested with release [http://sourceforge.net/projects/algol68/files/algol68g/algol68g-1.18.0/algol68g-1.18.0-9h.tiny.el5.centos.fc11.i386.rpm/download 1.18.0-9h.tiny].}}
{{wont work with|ELLA ALGOL 68|Any (with appropriate job cards) - tested with release [http://sourceforge.net/projects/algol68/files/algol68toc/algol68toc-1.8.8d/algol68toc-1.8-8d.fc9.i386.rpm/download 1.8-8d] - due to extensive use of '''format'''[ted] ''transput''.}}
<langsyntaxhighlight lang=algol68>#!/usr/local/bin/a68g --script #
 
program caesar: BEGIN
Line 284:
printf(($gl$, "Decrypted Ciphertext ->" + encrypt(text, -key)))
 
END #caesar#</langsyntaxhighlight>
{{out}}
<pre>
Line 293:
 
=={{header|APL}}==
<langsyntaxhighlight lang=apl>
∇CAESAR[⎕]∇
Line 301:
[3] A←V
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 325:
=={{header|AppleScript}}==
 
<langsyntaxhighlight lang=applescript>(* Only non-accented English letters are altered here. *)
 
on caesarDecipher(txt, |key|)
Line 351:
set enciphered to caesarEncipher(txt, |key|)
set deciphered to caesarDecipher(enciphered, |key|)
return "Text: '" & txt & ("'" & linefeed & "Key: " & |key| & linefeed & linefeed) & (enciphered & linefeed & deciphered)</langsyntaxhighlight>
 
{{output}}
 
<langsyntaxhighlight lang=applescript>"Text: 'ROMANES EUNT DOMUS!
The quick brown fox jumps over the lazy dog.'
Key: 9
Line 362:
Cqn zdrlt kaxfw oxg sdvyb xena cqn ujih mxp.
ROMANES EUNT DOMUS!
The quick brown fox jumps over the lazy dog."</langsyntaxhighlight>
 
=={{header|Applesoft BASIC}}==
<langsyntaxhighlight lang=ApplesoftBasic>100 INPUT ""; T$
 
110 LET K% = RND(1) * 25 + 1
Line 406:
460 IF C > 90 THEN C = C - 26
470 LET C$ = CHR$(C + L)
480 RETURN</langsyntaxhighlight>
{{out}}
<pre>]RUN
Line 430:
 
=={{header|Arc}}==
<langsyntaxhighlight lang=Arc>
(= rot (fn (L N)
(if
Line 451:
(string output)
))
</syntaxhighlight>
</lang>
 
{{Out}}
<langsyntaxhighlight lang=arc>
(caesar "The quick brown fox jumps over the lazy dog.")
"Gur dhvpx oebja sbk whzcf bire gur ynml qbt."
</syntaxhighlight>
</lang>
 
=={{header|ARM Assembly}}==
{{works with|as|Raspberry Pi}}
<langsyntaxhighlight lang=ARM Assembly>
/* ARM assembly Raspberry PI */
/* program caresarcode.s */
Line 635:
bx lr @ return
 
</syntaxhighlight>
</lang>
 
=={{header|Arturo}}==
{{trans|11l}}
<langsyntaxhighlight lang=rebol>ia: to :integer `a`
iA: to :integer `A`
lowAZ: `a`..`z`
Line 661:
enc: caesar msg 11
print [" Encoded :" enc]
print [" Decoded :" caesar.decode enc 11]</langsyntaxhighlight>
 
{{out}}
Line 670:
 
=={{header|Astro}}==
<langsyntaxhighlight lang=python>fun caesar(s, k, decode: false):
if decode:
k = 26 - k
Line 682:
let decrypted = caesar(enc, 11, decode: true)
 
print(message, encrypted, decrypted, sep: '\n')</langsyntaxhighlight>
 
=={{header|AutoHotkey}}==
This ungodly solution is an attempt at code-golf. It requires input to be all-caps alphabetic, only works on AutoHotkey_L Unicode, and might not run on x64
<langsyntaxhighlight lang=AutoHotkey>n=2
s=HI
t:=&s
While *t
o.=Chr(Mod(*t-65+n,26)+65),t+=2
MsgBox % o</langsyntaxhighlight>
This next one is much more sane and handles input very well, including case.
<langsyntaxhighlight lang=AutoHotkey>Caesar(string, n){
Loop Parse, string
{
Line 705:
}
 
MsgBox % Caesar("h i", 2) "`n" Caesar("Hi", 20)</langsyntaxhighlight>
{{out}}<pre>j k
Bc</pre>
Line 712:
 
The Ceasar Funktion can enrcypt and decrypt, standart is Encryption, to Decrypt set third parameter to False
<langsyntaxhighlight lang=autoit>
$Caesar = Caesar("Hi", 2, True)
MsgBox(0, "Caesar", $Caesar)
Line 745:
Return $sLetters
EndFunc ;==>Caesar
</syntaxhighlight>
</lang>
 
=={{header|AWK}}==
<langsyntaxhighlight lang=awk>
#!/usr/bin/awk -f
 
Line 791:
return s
}
</syntaxhighlight>
</lang>
 
{{out}}
Line 802:
=={{header|Babel}}==
 
<langsyntaxhighlight lang=babel>((main
{"The quick brown fox jumps over the lazy dog.\n"
dup <<
Line 853:
<- 0x60 cugt ->
0x7b cult
cand }))</langsyntaxhighlight>
 
{{out}}
Line 861:
 
=={{header|BaCon}}==
<langsyntaxhighlight lang=qbasic>CONST lc$ = "abcdefghijklmnopqrstuvwxyz"
CONST uc$ = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
 
Line 881:
 
PRINT "Encrypted: ", en$
PRINT "Decrypted: ", Ceasar$(en$, 26-tokey)</langsyntaxhighlight>
{{out}}
<pre>
Line 899:
{{works with|GNU bash, version 4}}
 
<langsyntaxhighlight lang=bash>
caesar_cipher() {
 
Line 941:
}
 
</syntaxhighlight>
</lang>
 
{{out}} (input: caesar_cipher -e 13 "Hello World!"):
Line 954:
 
=={{header|BASIC256}}==
<syntaxhighlight lang=text>
# Caeser Cipher
# basic256 1.1.4.0
Line 985:
next i
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 998:
 
=={{header|BBC BASIC}}==
<langsyntaxhighlight lang=bbcbasic> plaintext$ = "Pack my box with five dozen liquor jugs"
PRINT plaintext$
Line 1,020:
NEXT
= text$
</syntaxhighlight>
</lang>
{{out}}
<pre>Pack my box with five dozen liquor jugs
Line 1,027:
 
=={{header|Beads}}==
<langsyntaxhighlight lang=Beads>beads 1 program 'Caesar cipher'
calc main_init
var str = "The five boxing wizards (🤖) jump quickly."
Line 1,059:
) : str
// we could also just shift by 26-nshift, same as going in reverse
return Encrypt(input, -nshift)</langsyntaxhighlight>
{{out}}
<pre>Plain: The five boxing wizards (🤖) jump quickly.
Line 1,071:
The text to encrypt is read from stdin, and the key is the first integer on the stack - 11 (<tt>65+</tt>) in the example below.
 
<langsyntaxhighlight lang=befunge>65+>>>>10p100p1>:v:+>#*,#g1#0-#0:#!<<
"`"::_@#!`\*84:<~<$<^+"A"%*2+9<v"{"\`
**-"A"-::0\`\55*`+#^_\0g+"4"+4^>\`*48</langsyntaxhighlight>
 
{{out}}
Line 1,081:
The decrypter is essentially identical, except for a change of sign on the last line.
 
<langsyntaxhighlight lang=befunge>65+>>>>10p100p1>:v:+>#*,#g1#0-#0:#!<<
"`"::_@#!`\*84:<~<$<^+"A"%*2+9<v"{"\`
**-"A"-::0\`\55*`+#^_\0g-"4"+4^>\`*48</langsyntaxhighlight>
 
{{out}}
Line 1,090:
 
=={{header|BQN}}==
<langsyntaxhighlight lang=bqn>o ← @‿'A'‿@‿'a'‿@ ⋄ m ← 5⥊↕2 ⋄ p ← m⊏∞‿26
Rot ← {i←⊑"A[a{"⍋𝕩 ⋄ i⊑o+p|(𝕨×m)+𝕩-o}⎉0</langsyntaxhighlight>
 
Example:
 
<langsyntaxhighlight lang=bqn>3 Rot "We're no strangers to love // You know the rules and so do I"</langsyntaxhighlight>
<pre>"Zh'uh qr vwudqjhuv wr oryh // Brx nqrz wkh uxohv dqg vr gr L"</pre>
 
Line 1,101:
 
=={{header|Brainf***}}==
<langsyntaxhighlight lang=bf> Author: Ettore Forigo | Hexwell
 
+ start the key input loop
Line 1,317:
^
<< :c ^
]</langsyntaxhighlight>
Usage:
Give to the program the key and the word to encrypt, each followed by a space.<br>
Input:
<!-- Using whitespace syntax highlighting to show the spaces, used by the program to separate arguments -->
<syntaxhighlight lang =whitespace>10 abc </langsyntaxhighlight>
Output:
<pre>klm</pre>
Input:
<syntaxhighlight lang =whitespace>16 klm </langsyntaxhighlight>
Output:
<pre>abc</pre>
 
=={{header|C}}==
<langsyntaxhighlight lang=c>#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Line 1,382:
return 0;
}</langsyntaxhighlight>
 
=={{header|C sharp|C#}}==
<langsyntaxhighlight lang=csharp>using System;
using System.Linq;
 
Line 1,424:
}
}
}</langsyntaxhighlight>
{{out}}
<pre>Pack my box with five dozen liquor jugs.
Line 1,431:
 
=={{header|C++}}==
<langsyntaxhighlight lang=Cpp>#include <string>
#include <iostream>
#include <algorithm>
Line 1,475:
std::cout << input << std::endl ;
return 0 ;
}</langsyntaxhighlight>
{{out}}
<pre>Which text is to be encrypted ?
Line 1,494:
===={{works with|C++-11}}====
 
<langsyntaxhighlight lang=Cpp>/* caesar cipher */
 
#include <string>
Line 1,548:
return 0 ;
}
</syntaxhighlight>
</lang>
 
{{out}}
Line 1,563:
=={{header|Clojure}}==
Readable version:
<langsyntaxhighlight lang=Clojure>(defn encrypt-character [offset c]
(if (Character/isLetter c)
(let [v (int c)
Line 1,585:
(print "Original text:" text "\n")
(print "Encryption:" enc "\n")
(print "Decryption:" (decrypt -1 enc) "\n"))</langsyntaxhighlight>
 
output:
Line 1,594:
 
Terser version using replace:
<langsyntaxhighlight lang=Clojure>(defn encode [k s]
(let [f #(take 26 (drop %3 (cycle (range (int %1) (inc (int %2))))))
a #(map char (concat (f \a \z %) (f \A \Z %)))]
Line 1,600:
 
(defn decode [k s]
(encode (- 26 k) s))</langsyntaxhighlight>
 
output:<pre>
Line 1,611:
=={{header|COBOL}}==
COBOL-85 ASCII or EBCIDIC
<langsyntaxhighlight lang=COBOL>
identification division.
program-id. caesar.
Line 1,649:
.
end program caesar.
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 1,658:
 
{{works with|OpenCOBOL|2.0}}
<langsyntaxhighlight lang=cobol> >>SOURCE FORMAT IS FREE
PROGRAM-ID. caesar-cipher.
 
Line 1,743:
MOVE FUNCTION encrypt(decrypt-offset, str) TO decrypted-str
.
END FUNCTION decrypt.</langsyntaxhighlight>
 
{{out}}
Line 1,754:
 
=={{header|CoffeeScript}}==
<langsyntaxhighlight lang=coffeescript>cipher = (msg, rot) ->
msg.replace /([a-z|A-Z])/g, ($1) ->
c = $1.charCodeAt(0)
Line 1,763:
console.log cipher "Hello World", 2
console.log cipher "azAz %^&*()", 3</langsyntaxhighlight>
{{out}}
<pre>
Line 1,775:
Very generic implementation. Please note that in Commodore BASIC, SHIFT-typed letters (to generate either graphic symbols in upper-case mode, or capital letters in lower-case mode) do '''not''' translate to PETSCII characters 97 through 122, but instead to characters 193 through 218.
 
<langsyntaxhighlight lang=gwbasic>1 rem caesar cipher
2 rem rosetta code
10 print chr$(147);chr$(14);
Line 1,821:
3035 cm$=cm$+mid$(ec$,c,1)
3040 next i
3050 return</langsyntaxhighlight>
 
{{Output}}
Line 1,850:
=={{header|Common Lisp}}==
====Main version====
<langsyntaxhighlight lang=lisp>(defun encipher-char (ch key)
(let* ((c (char-code ch)) (la (char-code #\a)) (ua (char-code #\A))
(base (cond ((<= la c (char-code #\z)) la)
Line 1,868:
(format t " Original: ~a ~%" original-text)
(format t "Encrypted: ~a ~%" cipher-text)
(format t "Decrypted: ~a ~%" recovered-text))</langsyntaxhighlight>
{{out}}
<pre> Original: The five boxing wizards jump quickly
Encrypted: Wkh ilyh eralqj zlcdugv mxps txlfnob
Decrypted: The five boxing wizards jump quickly</pre>
<langsyntaxhighlight lang=lisp>
(defun caesar-encipher (s k)
(map 'string #'(lambda (c) (z c k)) s))
Line 1,883:
(when (<= 65 c 90) 65))))
(if b (code-char (+ (mod (+ (- c b) k) 26) b)) h))
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 1,894:
1. Program
 
<langsyntaxhighlight lang=lisp>(defconstant +a+ "AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz")
(defun caesar (txt offset)
Line 1,902:
(char +a+ (mod (+ (position c +a+) (* 2 offset)) 52))
c))
txt))</langsyntaxhighlight>
 
2. Execution
Line 1,913:
 
=={{header|Crystal}}==
<langsyntaxhighlight lang=crystal>class String
ALPHABET = ("A".."Z").to_a
 
Line 1,924:
encrypted = "THEQUICKBROWNFOXJUMPSOVERTHELAZYDOG".caesar_cipher(5)
decrypted = encrypted.caesar_cipher(-5)
</syntaxhighlight>
</lang>
 
=={{header|Cubescript}}==
<langsyntaxhighlight lang=cubescript>alias modn [ mod (+ (mod $arg1 $arg2) $arg2) $arg2 ]
//Cubescript's built-in mod will fail on negative numbers
 
Line 1,984:
] ]
result $arg1
]</langsyntaxhighlight>
 
Usage:
<syntaxhighlight lang=text>>>> cipher "The Quick Brown Fox Jumps Over The Lazy Dog." 5
> Ymj Vznhp Gwtbs Ktc Ozrux Tajw Ymj Qfed Itl.
>>> decipher "Ymj Vznhp Gwtbs Ktc Ozrux Tajw Ymj Qfed Itl." 5
> The Quick Brown Fox Jumps Over The Lazy Dog.</langsyntaxhighlight>
 
=={{header|D}}==
<langsyntaxhighlight lang=d>import std.stdio, std.traits;
 
S rot(S)(in S s, in int key) pure nothrow @safe
Line 2,014:
writeln("Encrypted: ", txt.rot(key));
writeln("Decrypted: ", txt.rot(key).rot(26 - key));
}</langsyntaxhighlight>
{{out}}
<pre>Original: The five boxing wizards jump quickly
Line 2,020:
Decrypted: The five boxing wizards jump quickly</pre>
Simpler in-place version (same output):
<langsyntaxhighlight lang=d>import std.stdio, std.ascii;
 
void inplaceRot(char[] txt, in int key) pure nothrow {
Line 2,039:
txt.inplaceRot(26 - key);
writeln("Decrypted: ", txt);
}</langsyntaxhighlight>
 
A version that uses the standard library (same output):
<langsyntaxhighlight lang=d>import std.stdio, std.ascii, std.string, std.algorithm;
 
string rot(in string s, in int key) pure nothrow @safe {
Line 2,058:
writeln("Encrypted: ", txt.rot(key));
writeln("Decrypted: ", txt.rot(key).rot(26 - key));
}</langsyntaxhighlight>
 
=={{header|Dart}}==
<langsyntaxhighlight lang=dart>class Caesar {
int _key;
 
Line 2,124:
trip(".-:/\"\\!");
trip("The Quick Brown Fox Jumps Over The Lazy Dog.");
}</langsyntaxhighlight>
{{out}}
<pre>JK
Line 2,154:
{{trans|C#}}
 
<langsyntaxhighlight lang=dyalect>func Char.Encrypt(code) {
if !this.IsLetter() {
return this
Line 2,179:
print("Encrypted: \(str)")
str = str.Decrypt(5)
print("Decrypted: \(str)")</langsyntaxhighlight>
 
{{out}}
Line 2,200:
If the program is running in the EdsacPC simulator, the user can enter a message by storing it in a text file, making that file the active file, and clicking Reset.
The message must be terminated by a blank row of tape (represented by '.' in EdsacPC).
<langsyntaxhighlight lang=edsac>
[Caesar cipher for Rosetta Code.
EDSAC program, Initial Orders 2.]
Line 2,416:
P F [acc = 0 on entry]
DGAZA!FREQUENS!LIBYCUM!DUXIT!KARTHAGO!TRIUMPHUM.
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 2,431:
 
=={{header|Eiffel}}==
<langsyntaxhighlight lang=eiffel>
class
APPLICATION
Line 2,485:
end
end
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 2,495:
=={{header|Ela}}==
 
<langsyntaxhighlight lang=ela>open number char monad io string
 
chars = "ABCDEFGHIJKLMOPQRSTUVWXYZ"
Line 2,522:
putStrLn ""
putStr "Decoded string: "
put $ decypher key cstr</langsyntaxhighlight>
 
{{out}}
Line 2,533:
=={{header|Elena}}==
ELENA 4.x :
<langsyntaxhighlight lang=elena>import system'routines;
import system'math;
import extensions;
Line 2,607:
 
console.readChar()
}</langsyntaxhighlight>
{{out}}
<pre>
Line 2,616:
 
=={{header|Elixir}}==
<langsyntaxhighlight lang=elixir>defmodule Caesar_cipher do
defp set_map(map, range, key) do
org = Enum.map(range, &List.to_string [&1])
Line 2,633:
IO.puts "Original: #{text}"
IO.puts "Encrypted: #{enc = Caesar_cipher.encode(text, key)}"
IO.puts "Decrypted: #{Caesar_cipher.encode(enc, -key)}"</langsyntaxhighlight>
 
{{out}}
Line 2,643:
 
=={{header|Erlang}}==
<langsyntaxhighlight lang=Erlang>
%% Ceasar cypher in Erlang for the rosetta code wiki.
%% Implemented by J.W. Luiten
Line 2,678:
PlainText = lists:map(fun(Char) -> rot(Char, Decode) end, CypherText).
 
</syntaxhighlight>
</lang>
Command: <langsyntaxhighlight lang=Erlang>ceasar:main("The five boxing wizards jump quickly", 3).</langsyntaxhighlight>
{{out}}
<pre>
Line 2,688:
 
=={{header|ERRE}}==
<langsyntaxhighlight lang=ERRE>
PROGRAM CAESAR
 
Line 2,718:
 
END PROGRAM
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 2,728:
=={{header|Euphoria}}==
{{works with|Euphoria|4.0.0}}
<langsyntaxhighlight lang=Euphoria>
--caesar cipher for Rosetta Code wiki
--User:Lnettnay
Line 2,784:
printf(1,"%s\n",{text})
 
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 2,793:
 
=={{header|F_Sharp|F#}}==
<langsyntaxhighlight lang=fsharp>module caesar =
open System
 
Line 2,805:
 
let encrypt n = cipher n
let decrypt n = cipher (26 - n)</langsyntaxhighlight>
<pre>&gt; caesar.encrypt 2 "HI";;
val it : string = "JK"
Line 2,819:
{{works with|Factor|0.97}}
{{trans|F#}}
<langsyntaxhighlight lang=factor>USING: io kernel locals math sequences unicode.categories ;
IN: rosetta-code.caesar-cipher
 
Line 2,836:
 
11 "Esp bftnv mczhy qzi ufxapo zgpc esp wlkj ozr." decrypt print
11 "The quick brown fox jumped over the lazy dog." encrypt print</langsyntaxhighlight>
{{out}}
<pre>
Line 2,847:
Shifts upper/lower case letters, leaves other characters as they are.
 
<langsyntaxhighlight lang=fantom>
class Main
{
Line 2,900:
}
}
</syntaxhighlight>
</lang>
 
Example:
Line 2,922:
=={{header|Fhidwfe}}==
only encodes letters
<langsyntaxhighlight lang=Fhidwfe>
lowers = ['a','z']
uppers = ['A','Z']
Line 2,965:
 
//this compiles with only 6 warnings!
</syntaxhighlight>
</lang>
 
=={{header|Forth}}==
<langsyntaxhighlight lang=forth>: ceasar ( c n -- c )
over 32 or [char] a -
dup 0 26 within if
Line 2,986:
 
3 ceasar-inverse test 2@ ceasar-string
test 2@ cr type</langsyntaxhighlight>
 
=={{header|Fortran}}==
{{works with|Fortan 90 and later}}
<langsyntaxhighlight lang=fortran>program Caesar_Cipher
implicit none
 
Line 3,032:
end subroutine
 
end program Caesar_Cipher</langsyntaxhighlight>
{{out}}
<pre>Original message = The five boxing wizards jump quickly
Line 3,039:
 
=={{header|FreeBASIC}}==
<langsyntaxhighlight lang=freebasic>' FB 1.05.0 Win64
 
Sub Encrypt(s As String, key As Integer)
Line 3,079:
Decrypt s, 8
Print "Decrypted : "; s
Sleep</langsyntaxhighlight>
 
{{out}}
Line 3,090:
=={{header|Gambas}}==
'''[https://gambas-playground.proko.eu/?gist=cb96008082bc0d8278224cd2a5ec74d3 Click this link to run this code]'''
<langsyntaxhighlight lang=gambas>Public Sub Main()
Dim byKey As Byte = 3 'The key (Enter 26 to get the same output as input)
Dim byCount As Byte 'Counter
Line 3,109:
Print sString & gb.NewLine & sCoded 'Print the result
 
End</langsyntaxhighlight>
Output:
<pre>
Line 3,117:
 
=={{header|GAP}}==
<langsyntaxhighlight lang=gap>CaesarCipher := function(s, n)
local r, c, i, lower, upper;
lower := "abcdefghijklmnopqrstuvwxyz";
Line 3,142:
 
CaesarCipher("Vgg cphvi wzdibn vmz wjmi amzz viy zlpvg di ydbidot viy mdbcon.", 5);
# "All human beings are born free and equal in dignity and rights."</langsyntaxhighlight>
 
=={{header|GFA Basic}}==
<langsyntaxhighlight lang=basic>
'
' Caesar cypher
Line 3,182:
RETURN @encrypt$(text$,26-key%)
ENDFUNC
</syntaxhighlight>
</lang>
 
=={{header|Go}}==
Obvious solution with explicit testing for character ranges:
<langsyntaxhighlight lang=go>package main
 
import (
Line 3,244:
fmt.Println(" Deciphered:", ck.decipher(ct))
}
}</langsyntaxhighlight>
Data driven version using functions designed for case conversion. (And for method using % operator, see [[Vigen%C3%A8re_cipher#Go]].)
<langsyntaxhighlight lang=go>package main
 
import (
Line 3,302:
fmt.Println(" Deciphered:", ck.decipher(ct))
}
}</langsyntaxhighlight>
{{out}} (either version)
<pre>
Line 3,321:
=={{header|Groovy}}==
Java style:
<langsyntaxhighlight lang=groovy>def caesarEncode(​cipherKey, text) {
def builder = new StringBuilder()
text.each { character ->
Line 3,333:
builder as String
}
def caesarDecode(cipherKey, text) { caesarEncode(26 - cipherKey, text) }</langsyntaxhighlight>
 
Functional style:
<langsyntaxhighlight lang=groovy>def caesarEncode(cipherKey, text) {
text.chars.collect { c ->
int off = c.isUpperCase() ? 'A' : 'a'
Line 3,342:
}.join()
}
def caesarDecode(cipherKey, text) { caesarEncode(26 - cipherKey, text) }</langsyntaxhighlight>
 
Ninja style:
<langsyntaxhighlight lang=groovy>def caesarEncode(k, text) {
(text as int[]).collect { it==' ' ? ' ' : (((it & 0x1f) + k - 1) % 26 + 1 | it & 0xe0) as char }.join()
}
def caesarDecode(k, text) { caesarEncode(26 - k, text) }</langsyntaxhighlight>
Using built in 'tr' function and a replacement alphabet:
<langsyntaxhighlight lang=groovy>def caesarEncode(k, text) {
text.tr('a-zA-Z', ((('a'..'z')*2)[k..(k+25)] + (('A'..'Z')*2)[k..(k+25)]).join())
}
def caesarDecode(cipherKey, text) { caesarEncode(26 - cipherKey, text) }</langsyntaxhighlight>
and the same with closures for somewhat better readability:
<langsyntaxhighlight lang=groovy>def caesarEncode(k, text) {
def c = { (it*2)[k..(k+25)].join() }
text.tr('a-zA-Z', c('a'..'z') + c('A'..'Z'))
}
def caesarDecode(cipherKey, text) { caesarEncode(26 - cipherKey, text) }</langsyntaxhighlight>
Test code:
<langsyntaxhighlight lang=groovy>
def plainText = "The Quick Brown Fox jumped over the lazy dog"
def cipherKey = 12
Line 3,373:
assert plainText == decodedText
</syntaxhighlight>
</lang>
 
{{out}}
Line 3,381:
 
=={{header|Haskell}}==
<langsyntaxhighlight lang=haskell>module Caesar (caesar, uncaesar) where
 
import Data.Char
Line 3,397:
where b' = fromIntegral $ ord b
c' = fromIntegral $ ord c
</syntaxhighlight>
</lang>
 
And trying it out in GHCi:
Line 3,409:
Similarly, but allowing for negative cipher keys, and using isAlpha, isUpper, negate:
 
<langsyntaxhighlight lang=haskell>import Data.Bool (bool)
import Data.Char (chr, isAlpha, isUpper, ord)
 
Line 3,432:
cipher = caesar k
plain = "Curio, Cesare venne, e vide e vinse ? "
mapM_ putStrLn $ [cipher, uncaesar k . cipher] <*> [plain]</langsyntaxhighlight>
{{Out}}
<pre>Skhye, Suiqhu luddu, u lytu u lydiu ?
Line 3,438:
 
Or with proper error handling:
<langsyntaxhighlight lang=haskell>{-# LANGUAGE LambdaCase #-}
module Main where
 
Line 3,469:
addChar b o c = chr $ fromIntegral (b' + (c' - b' + o) `mod` 26)
where b' = fromIntegral $ ord b
c' = fromIntegral $ ord c</langsyntaxhighlight>
 
=={{header|Hoon}}==
<langsyntaxhighlight lang=Hoon>|%
++ enc
|= [msg=tape key=@ud]
Line 3,480:
|= [msg=tape key=@ud]
(enc msg (sub 26 key))
--</langsyntaxhighlight>
 
=={{header|Icon}} and {{header|Unicon}}==
Strictly speaking a Ceasar Cipher is a shift of 3 (the default in this case).
<langsyntaxhighlight lang=Icon>procedure main()
ctext := caesar(ptext := map("The quick brown fox jumped over the lazy dog"))
dtext := caesar(ctext,,"decrypt")
Line 3,499:
"d"|"decrypt" : return map(text,(&lcase||&lcase)[k+:*&lcase],&lcase)
}
end</langsyntaxhighlight>
 
{{out}}
Line 3,507:
 
=={{header|IS-BASIC}}==
<langsyntaxhighlight lang=IS-BASIC>100 PROGRAM "CaesarCi.bas"
110 STRING M$*254
120 INPUT PROMPT "String: ":M$
Line 3,547:
480 NEXT
490 LET M$=T$
500 END DEF</langsyntaxhighlight>
 
=={{header|J}}==
If we assume that the task also requires us to leave non-alphabetic characters alone:
<langsyntaxhighlight lang=j>cndx=: [: , 65 97 +/ 26 | (i.26)&+
caesar=: (cndx 0)}&a.@u:@cndx@[ {~ a.i.]</langsyntaxhighlight>
Example use:<langsyntaxhighlight lang=j> 2 caesar 'This simple "monoalphabetic substitution cipher" provides almost no security, ...'
Vjku ukorng "oqpqcnrjcdgvke uwduvkvwvkqp ekrjgt" rtqxkfgu cnoquv pq ugewtkva, ...</langsyntaxhighlight>
If we instead assume the task only requires we treat upper case characters:
<langsyntaxhighlight lang=j>CAESAR=:1 :'(26|m&+)&.((26{.64}.a.)&i.)'</langsyntaxhighlight>
Example use:<langsyntaxhighlight lang=j> 20 CAESAR 'HI'
BC</langsyntaxhighlight>
 
=={{header|Janet}}==
<langsyntaxhighlight lang=janet>
(def alphabet "abcdefghijklmnopqrstuvwxyz")
 
Line 3,590:
(print cipher)
(print str)))
</syntaxhighlight>
</lang>
 
{{out}}
Line 3,602:
=={{header|Java}}==
{{works with|Java|1.5+}}
<langsyntaxhighlight lang=java5>public class Cipher {
public static void main(String[] args) {
 
Line 3,631:
return encoded.toString();
}
}</langsyntaxhighlight>
{{out}}
<pre>
Line 3,642:
===ES5===
 
<langsyntaxhighlight lang=javascript>function caesar (text, shift) {
return text.toUpperCase().replace(/[^A-Z]/g,'').replace(/./g, function(a) {
return String.fromCharCode(65+(a.charCodeAt(0)-65+shift)%26);
Line 3,652:
for (var i = 0; i<26; i++) {
console.log(i+': '+caesar(text,i));
}</langsyntaxhighlight>
 
{{output}}
Line 3,665:
===ES6===
 
<langsyntaxhighlight lang=javascript>var caesar = (text, shift) => text
.toUpperCase()
.replace(/[^A-Z]/g, '')
.replace(/./g, a =>
String.fromCharCode(65 + (a.charCodeAt(0) - 65 + shift) % 26));</langsyntaxhighlight>
 
 
Or, allowing encoding and decoding of both lower and upper case:
 
<langsyntaxhighlight lang=JavaScript>((key, strPlain) => {
 
// Int -> String -> String
Line 3,716:
return [strCipher, ' -> ', strDecode];
 
})(114, 'Curio, Cesare venne, e vide e vinse ? ');</langsyntaxhighlight>
 
{{Out}}
Line 3,725:
{{works with|jq}}
'''Works with gojq, the Go implementation of jq'''
<langsyntaxhighlight lang=jq>def encrypt(key):
. as $s
| explode as $xs
Line 3,755:
(encrypt(8)
| ., decrypt(8) )
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 3,766:
=={{header|Jsish}}==
From Typescript entry.
<langsyntaxhighlight lang=javascript>/* Caesar cipher, in Jsish */
"use strict";
 
Line 3,798:
caesarCipher(caesarCipher(str, 3), -3) ==> The five boxing wizards jump quickly
=!EXPECTEND!=
*/</langsyntaxhighlight>
 
{{out}}
Line 3,807:
===updated version for Julia 1.x | Rename isalpha to isletter #27077 | https://github.com/JuliaLang/julia/pull/27077===
 
<langsyntaxhighlight lang=julia>
# Caeser cipher
# Julia 1.5.4
Line 3,840:
text = "Magic Encryption"; key = 13
csrcipher(text, key)
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 3,850:
Assumes lowercase letters, and no punctuation.
 
<syntaxhighlight lang=k>
<lang k>
s:"there is a tide in the affairs of men"
caesar:{ :[" "=x; x; {x!_ci 97+!26}[y]@_ic[x]-97]}'
caesar[s;1]
"uifsf jt b ujef jo uif bggbjst pg nfo"
</syntaxhighlight>
</lang>
 
=={{header|Kotlin}}==
<langsyntaxhighlight lang=scala>// version 1.0.5-2
 
object Caesar {
Line 3,892:
val decoded = Caesar.decrypt(encoded, 8)
println(decoded)
}</langsyntaxhighlight>
 
{{out}}
Line 3,905:
=={{header|Lambdatalk}}==
The caesar function encodes and decodes texts containing exclusively the set [ABCDEFGHIJKLMNOPQRSTUVWXZ].
<langsyntaxhighlight lang=scheme>
{def caesar
 
Line 3,975:
-> VENIVIDIVICI
 
</syntaxhighlight>
</lang>
 
=={{header|langur}}==
Using the built-in rotate() function on a number over a range, a number outside of the range will pass through unaltered.
 
<langsyntaxhighlight lang=langur>val .rot = f(.s, .key) {
cp2s map(f(.c) rotate(rotate(.c, .key, 'a'..'z'), .key, 'A'..'Z'), s2cp .s)
}
Line 3,989:
writeln " original: ", .s
writeln "encrypted: ", .rot(.s, .key)
writeln "decrypted: ", .rot(.rot(.s, .key), -.key)</langsyntaxhighlight>
 
{{out}}
Line 3,997:
 
=={{header|Liberty BASIC}}==
<langsyntaxhighlight lang=lb>key = 7
 
Print "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
Line 4,020:
CaesarCypher$ = (CaesarCypher$ + Chr$(rotate))
Next i
End Function</langsyntaxhighlight>
 
=={{header|LiveCode}}==
<langsyntaxhighlight lang=LiveCode>function caesarCipher rot phrase
local rotPhrase, lowerLetters, upperLetters
put "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz" into lowerLetters
Line 4,038:
end repeat
return rotPhrase
end caesarCipher</langsyntaxhighlight>
 
=={{header|Logo}}==
{{trans|Common Lisp}}
{{works with|UCB Logo}}
<langsyntaxhighlight lang=logo>; some useful constants
make "lower_a ascii "a
make "lower_z ascii "z
Line 4,076:
print sentence "|Encrypted:| :ciphertext
print sentence "|Recovered:| :recovered
bye</langsyntaxhighlight>
 
{{out}}
Line 4,085:
=={{header|Lua}}==
 
<langsyntaxhighlight lang=Lua>local function encrypt(text, key)
return text:gsub("%a", function(t)
local base = (t:lower() == t and string.byte('a') or string.byte('A'))
Line 4,115:
print("Decrypted text: ", decrypted)
end
</syntaxhighlight>
</lang>
 
 
'''Fast version'''
<langsyntaxhighlight lang=Lua>local memo = {}
 
local function make_table(k)
Line 4,150:
end
return string.char(unpack(res_t))
end</langsyntaxhighlight>
 
=={{header|M2000 Interpreter}}==
We use a Buffer object (is a pointer type to a block of memory), to store string, to have access using unsigned integers.
 
<langsyntaxhighlight lang=M2000 Interpreter>
a$="THIS IS MY TEXT TO ENCODE WITH CAESAR CIPHER"
Function Cipher$(a$, N) {
Line 4,173:
Print Cipher$(B$,12)
 
</syntaxhighlight>
</lang>
 
=={{header|Maple}}==
<langsyntaxhighlight lang=Maple>
> StringTools:-Encode( "The five boxing wizards jump quickly", encoding = alpharot[3] );
"Wkh ilyh eralqj zlcdugv mxps txlfnob"
Line 4,182:
> StringTools:-Encode( %, encoding = alpharot[ 23 ] );
"The five boxing wizards jump quickly"
</syntaxhighlight>
</lang>
(The symbol % refers the the last (non-NULL) value computed.)
 
=={{header|Mathematica}} / {{header|Wolfram Language}}==
<langsyntaxhighlight lang=Mathematica>cypher[mesg_String,n_Integer]:=StringReplace[mesg,Flatten[Thread[Rule[#,RotateLeft[#,n]]]&/@CharacterRange@@@{{"a","z"},{"A","Z"}}]]</langsyntaxhighlight>
{{out}}
<pre>cypher["The five boxing wizards jump quickly",3]
Line 4,192:
 
=={{header|MATLAB}} / {{header|Octave}}==
<langsyntaxhighlight lang=Matlab> function s = cipherCaesar(s, key)
s = char( mod(s - 'A' + key, 25 ) + 'A');
end;
function s = decipherCaesar(s, key)
s = char( mod(s - 'A' - key, 25 ) + 'A');
end; </langsyntaxhighlight>
Here is a test:
<langsyntaxhighlight lang=Matlab> decipherCaesar(cipherCaesar('ABC',4),4)
ans = ABC </langsyntaxhighlight>
 
=={{header|Microsoft Small Basic}}==
<langsyntaxhighlight lang=Microsoft Small Basic>
TextWindow.Write("Enter a 1-25 number key (-ve number to decode): ")
key = TextWindow.ReadNumber()
Line 4,227:
TextWindow.WriteLine(message)
TextWindow.WriteLine(caeser)
</syntaxhighlight>
</lang>
{{out}}
<pre>Enter a 1-25 number key (-ve number to decode): 10
Line 4,243:
 
=={{header|MiniScript}}==
<langsyntaxhighlight lang=MiniScript>caesar = function(s, key)
chars = s.values
for i in chars.indexes
Line 4,254:
 
print caesar("Hello world!", 7)
print caesar("Olssv dvysk!", 26-7)</langsyntaxhighlight>
 
{{out}}
Line 4,263:
==={{header|mLite}}===
In this implementation, the offset can be positive or negative and is wrapped around if greater than 25 or less than -25.
<langsyntaxhighlight lang=ocaml>fun readfile () = readfile []
| x = let val ln = readln ()
in if eof ln then
Line 4,303:
;
map println ` map (fn s = encipher (s,ston ` default (argv 0, "1"))) ` readfile ();
</syntaxhighlight>
</lang>
The string for encoding is supplied as an input stream, and the offset supplied on the command line (defaults to 1). For example
<pre>echo The cat sat on the mat | mlite -f caecip.m ~5</pre>
Line 4,311:
=={{header|Modula-2}}==
{{trans|Java}}
<langsyntaxhighlight lang=modula2>MODULE CaesarCipher;
FROM Conversions IMPORT IntToStr;
FROM Terminal IMPORT WriteString, WriteLn, ReadChar;
Line 4,387:
 
ReadChar;
END CaesarCipher.</langsyntaxhighlight>
 
=={{header|Modula-3}}==
Line 4,396:
It also illustrates the use of exceptions in Modula-3.
 
<langsyntaxhighlight lang=modula3>MODULE Caesar EXPORTS Main;
 
IMPORT IO, IntSeq, Text;
Line 4,481:
Decode(buffer, message);
IO.Put(message); IO.PutChar('\n');
END Caesar.</langsyntaxhighlight>
 
{{out}}
Line 4,490:
 
=={{header|Nanoquery}}==
<langsyntaxhighlight lang=Nanoquery>def caesar_encode(plaintext, shift)
uppercase = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
lowercase = "abcdefghijklmnopqrstuvwxyz"
Line 4,524:
 
return plaintext
end</langsyntaxhighlight>
 
=={{header|NetRexx}}==
The cipher code in this sample is also used in the [[Rot-13#NetRexx|Rot-13&nbsp;&ndash;&nbsp;NetRexx]] task.
<langsyntaxhighlight lang=NetRexx>/* NetRexx */
 
options replace format comments java crossref savelog symbols nobinary
Line 4,619:
 
method isFalse public static returns boolean
return \isTrue</langsyntaxhighlight>
 
<pre style="height: 60ex; overflow: scroll;">
Line 4,715:
=={{header|Nim}}==
{{trans|Python}}
<langsyntaxhighlight lang=nim>import strutils
 
proc caesar(s: string, k: int, decode = false): string =
Line 4,728:
let enc = caesar(msg, 11)
echo enc
echo caesar(enc, 11, decode = true)</langsyntaxhighlight>
 
=={{header|Oberon-2}}==
Works with oo2c version2
<langsyntaxhighlight lang=oberon2>
MODULE Caesar;
IMPORT
Line 4,792:
 
END Caesar.
</syntaxhighlight>
</lang>
Output:
<pre>
Line 4,801:
 
=={{header|Objeck}}==
<langsyntaxhighlight lang=objeck>
class Caesar {
function : native : Encode(enc : String, offset : Int) ~ String {
Line 4,831:
}
}
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 4,839:
 
=={{header|OCaml}}==
<langsyntaxhighlight lang=ocaml>let islower c =
c >= 'a' && c <= 'z'
 
Line 4,863:
else
c
) str</langsyntaxhighlight>
<langsyntaxhighlight lang=ocaml>let () =
let key = 3 in
let orig = "The five boxing wizards jump quickly" in
Line 4,872:
print_endline deciphered;
Printf.printf "equal: %b\n" (orig = deciphered)
;;</langsyntaxhighlight>
{{out}}
<pre>$ ocaml caesar.ml
Line 4,881:
=={{header|Oforth}}==
 
<langsyntaxhighlight lang=Oforth>: ceasar(c, key)
c dup isLetter ifFalse: [ return ]
isUpper ifTrue: [ 'A' ] else: [ 'a' ] c key + over - 26 mod + ;
 
: cipherE(s, key) s map(#[ key ceasar ]) charsAsString ;
: cipherD(s, key) cipherE(s, 26 key - ) ;</langsyntaxhighlight>
 
{{out}}
Line 4,898:
 
=={{header|OOC}}==
<langsyntaxhighlight lang=ooc>main: func (args: String[]) {
shift := args[1] toInt()
if (args length != 3) {
Line 4,916:
str println()
}
}</langsyntaxhighlight>
{{out}}
<pre>$ ./caesar 8 "This should be a fairly original sentence."
Line 4,924:
 
=={{header|PARI/GP}}==
<langsyntaxhighlight lang=parigp>enc(s,n)={
Strchr(Vecsmall(apply(k->if(k>96&&k<123,(k+n-97)%26+97, if(k>64&&k<91, (k+n-65)%26+65, k)),
Vec(Vecsmall(s)))))
};
dec(s,n)=enc(s,-n);</langsyntaxhighlight>
 
=={{header|Pascal}}==
<langsyntaxhighlight lang=pascal>Program CaesarCipher(output);
 
procedure encrypt(var message: string; key: integer);
Line 4,968:
writeln ('Decrypted message: ', message);
readln;
end.</langsyntaxhighlight>
{{out}}
<pre>>: ./CaesarCipher
Line 4,978:
=={{header|Perl}}==
 
<langsyntaxhighlight lang=Perl>sub caesar {
my ($message, $key, $decode) = @_;
$key = 26 - $key if $decode;
Line 4,989:
print "msg: $msg\nenc: $enc\ndec: $dec\n";
</syntaxhighlight>
</lang>
 
{{out}}
Line 4,997:
 
=={{header|Phix}}==
<!--<langsyntaxhighlight lang=Phix>(phixonline)-->
<span style="color: #008080;">with</span> <span style="color: #008080;">javascript_semantics</span>
<span style="color: #004080;">sequence</span> <span style="color: #000000;">alpha_b</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">repeat</span><span style="color: #0000FF;">(</span><span style="color: #000000;">0</span><span style="color: #0000FF;">,</span><span style="color: #000000;">255</span><span style="color: #0000FF;">)</span>
Line 5,018:
<span style="color: #000000;">e</span> <span style="color: #0000FF;">=</span> <span style="color: #000000;">caesar</span><span style="color: #0000FF;">(</span><span style="color: #000000;">s</span><span style="color: #0000FF;">,</span><span style="color: #000000;">5</span><span style="color: #0000FF;">),</span>
<span style="color: #000000;">r</span> <span style="color: #0000FF;">=</span> <span style="color: #000000;">caesar</span><span style="color: #0000FF;">(</span><span style="color: #000000;">e</span><span style="color: #0000FF;">,</span><span style="color: #000000;">26</span><span style="color: #0000FF;">-</span><span style="color: #000000;">5</span><span style="color: #0000FF;">)</span> <span style="color: #0000FF;">?</span><span style="color: #000000;">e</span> <span style="color: #0000FF;">?</span><span style="color: #000000;">r</span>
<!--</langsyntaxhighlight>-->
{{out}}
<pre>
Line 5,028:
 
=={{header|PHP}}==
<langsyntaxhighlight lang=php><?php
function caesarEncode( $message, $key ){
$plaintext = strtolower( $message );
Line 5,046:
 
echo caesarEncode( "The quick brown fox Jumped over the lazy Dog", 12 ), "\n";
?></langsyntaxhighlight>
{{out}}
<pre>ftq cguow ndaiz raj vgybqp ahqd ftq xmlk pas</pre>
Line 5,052:
Or, using PHP's '''strtr()''' built-in function
 
<langsyntaxhighlight lang=php><?php
 
function caesarEncode($message, $key) {
Line 5,060:
}
 
echo caesarEncode('THE QUICK BROWN FOX JUMPED OVER THE LAZY DOG', 12), PHP_EOL;</langsyntaxhighlight>
 
{{out}}
Line 5,066:
 
=={{header|Picat}}==
<langsyntaxhighlight lang=Picat>main =>
S = "All human beings are born free and equal in dignity and rights.",
println(S),
Line 5,089:
M.put(Lower[I],Lower[II])
end.
</syntaxhighlight>
</lang>
 
{{out}}
Line 5,098:
 
=={{header|PicoLisp}}==
<langsyntaxhighlight lang=PicoLisp>(setq *Letters (apply circ (mapcar char (range 65 90))))
 
(de caesar (Str Key)
(pack
(mapcar '((C) (cadr (nth (member C *Letters) Key)))
(chop (uppc Str)) ) ) )</langsyntaxhighlight>
Test:
<pre>: (caesar "IBM" 25)
Line 5,117:
=={{header|Pike}}==
Pike has built in support for substitution cryptos in the Crypto module. It's possible to set the desired alphabet, but the default a-z matches the Caesar range.
<langsyntaxhighlight lang=Pike>object c = Crypto.Substitution()->set_rot_key(2);
string msg = "The quick brown fox jumped over the lazy dogs";
string msg_s2 = c->encrypt(msg);
Line 5,124:
string decoded = c->decrypt(msg_s11);
 
write("%s\n%s\n%s\n%s\n", msg, msg_s2, msg_s11, decoded);</langsyntaxhighlight>
 
{{out}}
Line 5,135:
 
=={{header|PL/I}}==
<langsyntaxhighlight lang=pli>caesar: procedure options (main);
declare cypher_string character (52) static initial
((2)'ABCDEFGHIJKLMNOPQRSTUVWXYZ');
Line 5,154:
put skip list ('Decyphered text=', text);
 
end caesar;</langsyntaxhighlight>
{{out}} with offset of 5:
<pre>
Line 5,163:
 
=={{header|PowerShell}}==
<langsyntaxhighlight lang=Powershell># Author: M. McNabb
function Get-CaesarCipher
{
Line 5,237:
$OutText = $null
}
}</langsyntaxhighlight>
Usage examples:
<pre>
Line 5,258:
{{Works with|SWI-Prolog}}
{{libheader|clpfd}}
<langsyntaxhighlight lang=Prolog>:- use_module(library(clpfd)).
 
caesar :-
Line 5,290:
 
% compute values of V1 and V2
label([A, V1, V2]).</langsyntaxhighlight>
{{out}}
<pre> ?- caesar.
Line 5,301:
=={{header|PureBasic}}==
The case is maintained for alphabetic characters (uppercase/lowercase input = uppercase/lowercase output) while non-alphabetic characters, if present are included and left unchanged in the result.
<langsyntaxhighlight lang=PureBasic>Procedure.s CC_encrypt(plainText.s, key, reverse = 0)
;if reverse <> 0 then reverse the encryption (decrypt)
If reverse: reverse = 26: key = 26 - key: EndIf
Line 5,337:
Print(#CRLF$ + #CRLF$ + "Press ENTER to exit"): Input()
CloseConsole()
EndIf</langsyntaxhighlight>
{{out}}
<pre> Plain text = "The quick brown fox jumped over the lazy dogs."
Line 5,344:
===Alternate solution===
Here is an alternate and more advanced form of the encrypt procedure. It improves on the simple version in terms of speed, in case Caesar is using the cipher on some very long documents. It is meant to replace the encrypt procedure in the previous code and produces identical results.
<langsyntaxhighlight lang=PureBasic>Procedure.s CC_encrypt(text.s, key, reverse = 0)
;if reverse <> 0 then reverse the encryption (decrypt)
Protected i, *letter.Character, *resultLetter.Character, result.s = Space(Len(text))
Line 5,364:
Wend
ProcedureReturn result
EndProcedure</langsyntaxhighlight>
 
=={{header|Python}}==
<langsyntaxhighlight lang=Python>def caesar(s, k, decode = False):
if decode: k = 26 - k
return "".join([chr((ord(i) - 65 + k) % 26 + 65)
Line 5,377:
enc = caesar(msg, 11)
print enc
print caesar(enc, 11, decode = True)</langsyntaxhighlight>
{{out}}
<pre>The quick brown fox jumped over the lazy dogs
Line 5,384:
Alternate solution
{{works with|Python|2.x}} (for 3.x change <code>string.maketrans</code> to <code>str.maketrans</code>)
<langsyntaxhighlight lang=python>import string
def caesar(s, k, decode = False):
if decode: k = 26 - k
Line 5,398:
enc = caesar(msg, 11)
print enc
print caesar(enc, 11, decode = True)</langsyntaxhighlight>
{{out}}
<pre>
Line 5,408:
Variant with memoization of translation tables
{{works with|Python|3.x}}
<langsyntaxhighlight lang=python>import string
def caesar(s, k = 13, decode = False, *, memo={}):
if decode: k = 26 - k
Line 5,418:
string.ascii_uppercase[k:] + string.ascii_uppercase[:k] +
string.ascii_lowercase[k:] + string.ascii_lowercase[:k])
return s.translate(table)</langsyntaxhighlight>
 
A compact alternative solution
<langsyntaxhighlight lang=python>
from string import ascii_uppercase as abc
 
Line 5,431:
print(caesar(msg, 11))
print(caesar(caesar(msg, 11), 11, True))
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 5,444:
{{works with|True BASIC}} Note that TrueBasic uses '!' for comments
{{trans|BASIC256}}
<langsyntaxhighlight lang=QBasic>LET dec$ = ""
LET tipo$ = "cleartext "
 
Line 5,475:
END IF
NEXT i
END</langsyntaxhighlight>
 
=={{header|Quackery}}==
<langsyntaxhighlight lang=Quackery> [ dup upper != ] is lower? ( c --> b )
 
[ dup lower != ] is upper? ( c --> b )
Line 5,510:
=={{header|R}}==
This is a generalization of the Rot-13 solution for R at: http://rosettacode.org/wiki/Rot-13#R .
<syntaxhighlight lang=R>
<lang R>
# based on Rot-13 solution: http://rosettacode.org/wiki/Rot-13#R
ceasar <- function(x, key)
Line 5,539:
 
 
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 5,555:
 
=={{header|Racket}}==
<langsyntaxhighlight lang=racket>
#lang racket
Line 5,575:
(define (encrypt s) (caesar s 1))
(define (decrypt s) (caesar s -1))
</syntaxhighlight>
</lang>
Example:
<pre>
Line 5,588:
(formerly Perl 6)
{{works with|Rakudo|2015.12}}
<syntaxhighlight lang=raku perl6line>my @alpha = 'A' .. 'Z';
sub encrypt ( $key where 1..25, $plaintext ) {
$plaintext.trans( @alpha Z=> @alpha.rotate($key) );
Line 5,602:
.say for $original, $en, $de;
 
say 'OK' if $original eq all( map { .&decrypt(.&encrypt($original)) }, 1..25 );</langsyntaxhighlight>
{{out}}
<pre>THE FIVE BOXING WIZARDS JUMP QUICKLY
Line 5,610:
 
=={{header|Red}}==
<langsyntaxhighlight lang=red>
Red ["Ceasar Cipher"]
 
Line 5,638:
encrypt: :caesar
decrypt: func spec-of :caesar [caesar src negate key]
</syntaxhighlight>
</lang>
<pre>
>> print encrypt "Ceasar Cipher" 4
Line 5,649:
=={{header|Retro}}==
Retro provides a number of classical cyphers in the '''crypto'''' library. This implementation is from the library.
<langsyntaxhighlight lang=Retro>{{
variable offset
: rotate ( cb-c ) tuck - @offset + 26 mod + ;
Line 5,662:
( Example )
"THEYBROKEOURCIPHEREVERYONECANREADTHIS" 3 ceaser ( returns encrypted string )
23 ceaser ( returns decrypted string )</langsyntaxhighlight>
 
=={{header|REXX}}==
===only Latin letters===
This version conforms to the task's restrictions.
<langsyntaxhighlight lang=rexx>/*REXX program supports the Caesar cypher for the Latin alphabet only, no punctuation */
/*──────────── or blanks allowed, all lowercase Latin letters are treated as uppercase.*/
parse arg key .; arg . p /*get key & uppercased text to be used.*/
Line 5,688:
return translate(s, substr(@ || @, ky, L), @) /*return the processed text.*/
/*──────────────────────────────────────────────────────────────────────────────────────*/
err: say; say '***error***'; say; say arg(1); say; exit 13</langsyntaxhighlight>
{{out|output|text=&nbsp; when using the input of: &nbsp; &nbsp; <tt> 22 The definition of a trivial program is one that has no bugs </tt>}}
<pre>
Line 5,700:
This version allows upper and lowercase Latin alphabet as well as all the
characters on the standard (computer) keyboard including blanks.
<langsyntaxhighlight lang=rexx>/*REXX program supports the Caesar cypher for most keyboard characters including blanks.*/
parse arg key p /*get key and the text to be cyphered. */
say 'Caesar cypher key:' key /*echo the Caesar cypher key to console*/
Line 5,721:
return translate(s, substr(@ || @, ky, L), @) /*return the processed text.*/
/*──────────────────────────────────────────────────────────────────────────────────────*/
err: say; say '***error***'; say; say arg(1); say; exit 13</langsyntaxhighlight>
{{out|output|text=&nbsp; when using the input of: &nbsp; &nbsp; <tt> 31 Batman's hood is called a "cowl" (old meaning). </tt>}}
<pre>
Line 5,731:
 
=={{header|Ring}}==
<langsyntaxhighlight lang=ring>
# Project : Caesar cipher
 
Line 5,789:
next
return str
</syntaxhighlight>
</lang>
Output:
<pre>
Line 5,805:
 
=={{header|Ruby}}==
<langsyntaxhighlight lang=ruby>class String
ALFABET = ("A".."Z").to_a
 
Line 5,817:
encypted = "THEYBROKEOURCIPHEREVERYONECANREADTHIS".caesar_cipher(3)
decrypted = encypted.caesar_cipher(-3)
</syntaxhighlight>
</lang>
 
=={{header|Run BASIC}}==
<langsyntaxhighlight lang=runbasic>input "Gimme a ofset:";ofst ' set any offset you like
 
a$ = "Pack my box with five dozen liquor jugs"
Line 5,840:
cipher$ = cipher$;code$
next i
END FUNCTION</langsyntaxhighlight>
{{out}}
<pre>Gimme a ofset:?9
Line 5,849:
=={{header|Rust}}==
This example shows proper error handling. It skips non-ASCII characters.
<langsyntaxhighlight lang=rust>use std::io::{self, Write};
use std::fmt::Display;
use std::{env, process};
Line 5,884:
let _ = writeln!(&mut io::stderr(), "ERROR: {}", msg);
process::exit(code);
}</langsyntaxhighlight>
 
=={{header|Scala}}==
<langsyntaxhighlight lang=scala>object Caesar {
private val alphaU='A' to 'Z'
private val alphaL='a' to 'z'
Line 5,898:
def decode(text:String, key:Int)=encode(text,-key)
private def rot(a:IndexedSeq[Char], c:Char, key:Int)=a((c-a.head+key+a.size)%a.size)
}</langsyntaxhighlight>
<langsyntaxhighlight lang=scala>val text="The five boxing wizards jump quickly"
println("Plaintext => " + text)
val encoded=Caesar.encode(text, 3)
println("Ciphertext => " + encoded)
println("Decrypted => " + Caesar.decode(encoded, 3))</langsyntaxhighlight>
{{out}}
<pre>Plaintext => The five boxing wizards jump quickly
Line 5,912:
This version first creates non shifted and shifted character sequences
and then encodes and decodes by indexing between those sequences.
<langsyntaxhighlight lang=scala>class Caeser(val key: Int) {
@annotation.tailrec
private def rotate(p: Int, s: IndexedSeq[Char]): IndexedSeq[Char] = if (p < 0) rotate(s.length + p, s) else s.drop(p) ++ s.take(p)
Line 5,923:
def encode(c: Char) = if (as.contains(c)) bs(as.indexOf(c)) else c
def decode(c: Char) = if (bs.contains(c)) as(bs.indexOf(c)) else c
}</langsyntaxhighlight>
 
<langsyntaxhighlight lang=scala>val text = "The five boxing wizards jump quickly"
val myCaeser = new Caeser(3)
val encoded = text.map(c => myCaeser.encode(c))
println("Plaintext => " + text)
println("Ciphertext => " + encoded)
println("Decrypted => " + encoded.map(c => myCaeser.decode(c)))</langsyntaxhighlight>
 
{{out}}
Line 5,939:
=={{header|Scheme}}==
 
<langsyntaxhighlight lang=scheme>;
; Works with R7RS-compatible Schemes (e.g. Chibi).
; Also current versions of Chicken, Gauche and Kawa.
Line 5,966:
(display (string-map caesar msg))
(newline)
</syntaxhighlight>
</lang>
 
{{out}}
Line 5,975:
=={{header|sed}}==
This code is roughly equivalent to the [[Rot-13#sed|rot-13]] cypher sed implementation, except that the conversion table is parameterized by a number and that the conversion done manually, instead of using `y///' command.
<langsyntaxhighlight lang=sed>#!/bin/sed -rf
# Input: <number 0..25>\ntext to encode
 
Line 6,011:
/\n\n/! s/\n([^\n])/\1\n/
t loop
s/\n\n.*//</langsyntaxhighlight>
{{out}}
<pre>
Line 6,026:
 
=={{header|Seed7}}==
<langsyntaxhighlight lang=seed7>$ include "seed7_05.s7i";
 
const func string: rot (in string: stri, in integer: encodingKey) is func
Line 6,054:
writeln("Encrypted: " <& rot(testText, exampleKey));
writeln("Decrypted: " <& rot(rot(testText, exampleKey), 26 - exampleKey));
end func;</langsyntaxhighlight>
{{out}}
<pre>
Line 6,064:
=={{header|SequenceL}}==
You only have to write an encrypt and decrypt function for characters. The semantics of Normalize Transpose allow those functions to be applied to strings.
<langsyntaxhighlight lang=sequencel>import <Utilities/Sequence.sl>;
import <Utilities/Conversion.sl>;
 
Line 6,095:
"Input: \t" ++ args[1] ++ "\n" ++
"Encrypted:\t" ++ encrypted ++ "\n" ++
"Decrypted:\t" ++ decrypted;</langsyntaxhighlight>
{{out}}
<pre>
Line 6,106:
=={{header|Sidef}}==
{{trans|Perl}}
<langsyntaxhighlight lang=ruby>func caesar(msg, key, decode=false) {
decode && (key = (26 - key));
msg.gsub(/([A-Z])/i, {|c| ((c.uc.ord - 65 + key) % 26) + 65 -> chr});
Line 6,118:
say "msg: #{msg}";
say "enc: #{enc}";
say "dec: #{dec}";</langsyntaxhighlight>
 
{{out}}
Line 6,129:
=={{header|Sinclair ZX81 BASIC}}==
Works with 1k of RAM. A negative key decodes.
<langsyntaxhighlight lang=basic> 10 INPUT KEY
20 INPUT T$
30 LET C$=""
Line 6,140:
100 LET C$=C$+L$
110 NEXT I
120 PRINT C$</langsyntaxhighlight>
{{in}}
<pre>12
Line 6,156:
{{works with|Smalltalk/X}}
well, I'm lucky: the standard library already contains a rot:n method!
<langsyntaxhighlight lang=Smalltalk>'THE QUICK BROWN FOX' rot:3 -> 'WKH TXLFN EURZQ IRA' </langsyntaxhighlight>
but if it wasn't, here is an implementation for other smalltalks:
<langsyntaxhighlight lang=smalltalk>
!CharacterArray methodsFor:'encoding'!
rot:n
Line 6,178:
^ self
 
</syntaxhighlight>
</lang>
 
=={{header|SSEM}}==
Line 6,186:
 
This is in fact a general solution that will work equally well with alphabets of more or fewer than 26 characters: simply replace the constant 26 in storage address 18 with 22 for Hebrew, 24 for Greek, 28 for Arabic, 33 for Russian, etc.
<langsyntaxhighlight lang=ssem>00101000000000100000000000000000 0. -20 to c
11001000000000010000000000000000 1. Sub. 19
10101000000001100000000000000000 2. c to 21
Line 6,204:
00000000000001110000000000000000 16. Stop
11010000000000000000000000000000 17. 11
01011000000000000000000000000000 18. 26</langsyntaxhighlight>
 
=={{header|Stata}}==
 
<langsyntaxhighlight lang=stata>function caesar(s, k) {
u = ascii(s)
i = selectindex(u:>=65 :& u:<=90)
Line 6,218:
 
caesar("layout", 20)
fusion</langsyntaxhighlight>
 
=={{header|Swift}}==
<langsyntaxhighlight lang=swift>
func usage(_ e:String) {
print("error: \(e)")
Line 6,304:
test()
main()
</syntaxhighlight>
</lang>
 
=={{header|Tcl}}==
<langsyntaxhighlight lang=tcl>package require Tcl 8.6; # Or TclOO package for 8.5
 
oo::class create Caesar {
Line 6,329:
string map $decryptMap $text
}
}</langsyntaxhighlight>
Demonstrating:
<langsyntaxhighlight lang=tcl>set caesar [Caesar new 3]
set txt "The five boxing wizards jump quickly."
set enc [$caesar encrypt $txt]
Line 6,337:
puts "Original message = $txt"
puts "Encrypted message = $enc"
puts "Decrypted message = $dec"</langsyntaxhighlight>
{{out}}
<pre>
Line 6,346:
 
=={{header|TUSCRIPT}}==
<langsyntaxhighlight lang=tuscript>$$ MODE TUSCRIPT
text="THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG"
PRINT "text orginal ",text
Line 6,369:
 
DECODED = EXCHANGE (encoded,secret2abc)
PRINT "encoded decoded ",decoded</langsyntaxhighlight>
{{out}}
<pre>
Line 6,379:
=={{header|TXR}}==
The strategy here, one of many possible ones, is to build, at run time,the arguments to be passed to deffilter to construct a pair of filters <code>enc</code> and <code>dec</code> for encoding and decoding. Filters are specified as tuples of strings.
<langsyntaxhighlight lang=txr>@(next :args)
@(cases)
@{key /[0-9]+/}
Line 6,401:
encoded: @{text :filter enc}
decoded: @{text :filter dec}
@(end)</langsyntaxhighlight>
{{out}}
<pre>$ ./txr caesar.txr 12 'Hello, world!'
Line 6,412:
 
=={{header|TypeScript}}==
<langsyntaxhighlight lang=javascript>function replace(input: string, key: number) : string {
return input.replace(/([a-z])/g,
($1) => String.fromCharCode(($1.charCodeAt(0) + key + 26 - 97) % 26 + 97)
Line 6,425:
 
console.log('Enciphered: ' + encoded);
console.log('Deciphered: ' + decoded);</langsyntaxhighlight>
 
=={{header|UNIX Shell}}==
{{works with|bash}}
I added a <tt>tr</tt> function to make this "pure" bash. In practice, you'd remove that function and use the external <tt>tr</tt> utility.
<langsyntaxhighlight lang=bash>caesar() {
local OPTIND
local encrypt n=0
Line 6,485:
echo "original: $txt"
echo "encrypted: $enc"
echo "decrypted: $dec"</langsyntaxhighlight>
{{out}}
<pre>
Line 6,493:
 
=={{header|Ursa}}==
<langsyntaxhighlight lang=ursa>decl string mode
while (not (or (= mode "encode") (= mode "decode")))
out "encode/decode: " console
Line 6,520:
end if
end for
out endl console</langsyntaxhighlight>
 
=={{header|Ursala}}==
The reification operator (<code>-:</code>) generates efficient code for applications like this given a table of inputs and outputs, which is obtained in this case by zipping the alphabet with itself rolled the right number of times, done separately for the upper and lower case letters and then combined.
<langsyntaxhighlight lang=Ursala>#import std
#import nat
 
Line 6,534:
#show+ # exhaustive test
 
test = ("n". <.enc"n",dec"n"+ enc"n"> plaintext)*= nrange/1 25</langsyntaxhighlight>
{{out}}
<pre style="overflow: auto; height: 6em;">
Line 6,590:
=={{header|Vala}}==
This is a port of the C# code present in this page.
<langsyntaxhighlight lang=Vala>static void println(string str) {
stdout.printf("%s\r\n", str);
}
Line 6,622:
println(encrypt(test_case, -1));
println(decrypt(encrypt(test_case, -1), -1));
}</langsyntaxhighlight>
 
{{out}}
Line 6,633:
=={{header|VBA}}==
 
<syntaxhighlight lang=vb>
<lang vb>
Option Explicit
 
Line 6,668:
Caesar_Cipher = strTemp
End Function
</syntaxhighlight>
</lang>
 
{{out}}
Line 6,676:
=={{header|VBScript}}==
Note that a left rotation has an equivalent right rotation so all rotations are converted to the equivalent right rotation prior to translation.
<langsyntaxhighlight lang=vb>
str = "IT WAS THE BEST OF TIMES, IT WAS THE WORST OF TIMES."
 
Line 6,712:
 
End Function
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 6,723:
=={{header|Vedit macro language}}==
This implementation ciphers/deciphers a highlighted block of text in-place in current edit buffer.
<langsyntaxhighlight lang=vedit>#10 = Get_Num("Enter the key: positive to cipher, negative to de-cipher: ", STATLINE)
 
Goto_Pos(Block_Begin)
Line 6,733:
Char(1)
}
}</langsyntaxhighlight>
 
{{out}} with key 13:
Line 6,744:
=={{header|Visual Basic .NET}}==
{{trans|C#}}
<langsyntaxhighlight lang=vbnet>Module Module1
 
Function Encrypt(ch As Char, code As Integer) As Char
Line 6,774:
End Sub
 
End Module</langsyntaxhighlight>
{{out}}
<pre>Pack my box with five dozen liquor jugs.
Line 6,781:
 
=={{header|Wortel}}==
<langsyntaxhighlight lang=wortel>@let {
; this function only replaces letters and keeps case
ceasar &[s n] !!s.replace &"[a-z]"gi &[x] [
Line 6,798:
]
!!ceasar "abc $%^ ABC" 10
}</langsyntaxhighlight>
Returns:
<pre>"klm $%^ KLM"</pre>
Line 6,804:
=={{header|Wren}}==
{{trans|Kotlin}}
<langsyntaxhighlight lang=ecmascript>class Caesar {
static encrypt(s, key) {
var offset = key % 26
Line 6,829:
var encoded = Caesar.encrypt("Bright vixens jump; dozy fowl quack.", 8)
System.print(encoded)
System.print(Caesar.decrypt(encoded, 8))</langsyntaxhighlight>
 
{{out}}
Line 6,840:
{{trans|C custom implementation}}
{{works with|GCC|7.3.0 - Ubuntu 18.04 64-bit}}
<langsyntaxhighlight lang=asm> # Author: Ettore Forigo - Hexwell
 
.intel_syntax noprefix
Line 6,941:
mov eax, 0 # 0
leave
ret # return 0</langsyntaxhighlight>
Usage:
<langsyntaxhighlight lang=bash>$ gcc caesar.S -o caesar
$ ./caesar 10 abc
klm
$ ./caesar 16 klm
abc</langsyntaxhighlight>
 
=={{header|XBasic}}==
{{trans|Modula-2}}
{{works with|Windows XBasic}}
<langsyntaxhighlight lang=xbasic>
PROGRAM "caesarcipher"
VERSION "0.0001"
Line 7,009:
END FUNCTION e$
END PROGRAM
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 7,018:
 
=={{header|XBS}}==
<langsyntaxhighlight lang=xbs>set letters="ABCDEFGHIJKLMNOPQRSTUVWXYZ"::split();
 
func caesar(text,shift:number=1){
Line 7,054:
 
log(e);
log(d);</langsyntaxhighlight>
{{out}}
<pre>
Line 7,062:
 
=={{header|XLISP}}==
<langsyntaxhighlight lang=lisp>(defun caesar-encode (text key)
(defun encode (ascii-code)
(defun rotate (character alphabet)
Line 7,077:
 
(defun caesar-decode (text key)
(caesar-encode text (- 26 key)))</langsyntaxhighlight>
Test it in a REPL:
<langsyntaxhighlight lang=lisp>[1] (define caesar-test (caesar-encode "CAESAR: Who is it in the press that calls on me? I hear a tongue, shriller than all the music, Cry 'Caesar!' Speak; Caesar is turn'd to hear." 14))
 
CAESAR-TEST
Line 7,087:
[3] (caesar-decode caesar-test 14)
 
"CAESAR: Who is it in the press that calls on me? I hear a tongue, shriller than all the music, Cry 'Caesar!' Speak; Caesar is turn'd to hear."</langsyntaxhighlight>
 
=={{header|XPL0}}==
Line 7,093:
Usage: caesar key <infile.txt >outfile.xxx
 
<langsyntaxhighlight lang=XPL0>code ChIn=7, ChOut=8, IntIn=10;
int Key, C;
[Key:= IntIn(8);
Line 7,105:
ChOut(0, C);
until C=$1A; \EOF
]</langsyntaxhighlight>
 
Example outfile.xxx:
Line 7,113:
 
=={{header|Yabasic}}==
<langsyntaxhighlight lang=Yabasic>
REM *** By changing the key and pattern, an encryption system that is difficult to break can be achieved. ***
 
Line 7,148:
 
return res$
end sub</langsyntaxhighlight>
{{out}}
<pre>You are encouraged to solve this task according to the task description, using any language you may know.
Line 7,157:
 
=={{header|zkl}}==
<langsyntaxhighlight lang=zkl>fcn caesarCodec(str,n,encode=True){
var [const] letters=["a".."z"].chain(["A".."Z"]).pump(String); // static
if(not encode) n=26 - n;
Line 7,163:
ltrs:=String(letters[n,sz],letters[0,n],letters[m,sz],letters[26,n]);
str.translate(letters,ltrs)
}</langsyntaxhighlight>
<langsyntaxhighlight lang=zkl>text:="The five boxing wizards jump quickly";
N:=3;
code:=caesarCodec(text,N);
println("text = ",text);
println("encoded(%d) = %s".fmt(N,code));
println("decoded = ",caesarCodec(code,N,False));</langsyntaxhighlight>
{{out}}
<pre>
Line 7,178:
 
=={{header|zonnon}}==
<langsyntaxhighlight lang=zonnon>
module Caesar;
const
Line 7,236:
writeln(txt," -c-> ",cipher," -d-> ",decipher)
end Caesar.
</syntaxhighlight>
</lang>
{{Out}}
<pre>
Line 7,246:
=={{header|ZX Spectrum Basic}}==
{{trans|BBC BASIC}}
<langsyntaxhighlight lang=zxbasic>10 LET t$="PACK MY BOX WITH FIVE DOZEN LIQUOR JUGS"
20 PRINT t$''
30 LET key=RND*25+1
Line 7,259:
1050 NEXT i
1060 RETURN
</syntaxhighlight>
</lang>
{{trans|Yabasic}}
<langsyntaxhighlight lang=zxbasic>10 LET t$="Wonderful ZX Spectrum."
20 LET c$="a":REM more characters, more difficult for decript
30 LET CIFRA=1: LET DESCIFRA=-1
Line 7,290:
1170 LET r$=r$+p$(delta)
1180 NEXT i
1190 RETURN </langsyntaxhighlight>
{{omit from|GUISS}}
10,327

edits