Jump to content

Caesar cipher: Difference between revisions

m
Automated syntax highlighting fixup (second round - minor fixes)
m (syntax highlighting fixup automation)
m (Automated syntax highlighting fixup (second round - minor fixes))
Line 1:
{{task|Encryption}}
[[Category:String manipulation]]
{{task|Encryption}}
 
 
Line 23:
* [[Vigenère Cipher/Cryptanalysis]]
<br><br>
=={{header|8th}}==
<syntaxhighlight lang="forth">\ Ensure the output char is in the correct range:
: modulate \ char base -- char
tuck n:- 26 n:+ 26 n:mod n:+ ;
 
\ Symmetric Caesar cipher. Input is text and number of characters to advance
\ (or retreat, if negative). That value should be in the range 1..26
: caesar \ intext key -- outext
>r
(
\ Ignore anything below '.' as punctuation:
dup '. n:> if
\ Do the conversion
dup r@ n:+ swap
\ Wrap appropriately
'A 'Z between if 'A else 'a then modulate
then
) s:map rdrop ;
 
"The five boxing wizards jump quickly!"
dup . cr
1 caesar dup . cr
-1 caesar . cr
bye</syntaxhighlight>
{{out}}
<pre>
The five boxing wizards jump quickly!
Uif gjwf cpyjoh xjabset kvnq rvjdlmz!
The five boxing wizards jump quickly!
</pre>
=={{header|11l}}==
<syntaxhighlight lang="11l">F caesar(string, =key, decode = 0B)
I decode
key = 26 - key
Line 51 ⟶ 80:
The quick brown fox jumped over the lazy dogs
</pre>
 
=={{header|360 Assembly}}==
A good example of the use of TR instruction to translate a character.
<syntaxhighlight lang="360asm">* Caesar cypher 04/01/2019
CAESARO PROLOG
XPRNT PHRASE,L'PHRASE print phrase
Line 90 ⟶ 118:
THE FIVE BOXING WIZARDS JUMP QUICKLY
</pre>
 
=={{header|8th}}==
<syntaxhighlight lang=forth>\ Ensure the output char is in the correct range:
: modulate \ char base -- char
tuck n:- 26 n:+ 26 n:mod n:+ ;
 
\ Symmetric Caesar cipher. Input is text and number of characters to advance
\ (or retreat, if negative). That value should be in the range 1..26
: caesar \ intext key -- outext
>r
(
\ Ignore anything below '.' as punctuation:
dup '. n:> if
\ Do the conversion
dup r@ n:+ swap
\ Wrap appropriately
'A 'Z between if 'A else 'a then modulate
then
) s:map rdrop ;
 
"The five boxing wizards jump quickly!"
dup . cr
1 caesar dup . cr
-1 caesar . cr
bye</syntaxhighlight>
{{out}}
<pre>
The five boxing wizards jump quickly!
Uif gjwf cpyjoh xjabset kvnq rvjdlmz!
The five boxing wizards jump quickly!
</pre>
 
=={{header|Action!}}==
<syntaxhighlight lang=Action"action!">CHAR FUNC Shift(CHAR c BYTE code)
CHAR base
 
Line 183 ⟶ 179:
The quick brown fox jumps over the lazy dog.
</pre>
 
=={{header|Ada}}==
<syntaxhighlight lang=Ada"ada">with Ada.Text_IO;
 
procedure Caesar is
Line 236 ⟶ 231:
Ciphertext ----------->Wkh ilyh eralqj zlcdugv mxps txlfnob
Decrypted Ciphertext ->The five boxing wizards jump quickly</pre>
 
=={{header|ALGOL 68}}==
{{trans|Ada|Note: This specimen retains the original [[#Ada|Ada]] coding style.}}
Line 242 ⟶ 236:
{{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''.}}
<syntaxhighlight lang="algol68">#!/usr/local/bin/a68g --script #
 
program caesar: BEGIN
Line 291 ⟶ 285:
Decrypted Ciphertext ->The five boxing wizards jump quickly
</pre>
 
=={{header|APL}}==
<syntaxhighlight lang="apl">
∇CAESAR[⎕]∇
Line 322 ⟶ 315:
Esl dyar: dpyargmlyj icwq qugraf dpmk TOODQ BZRD rm jmucp ayqc.
</pre>
 
=={{header|AppleScript}}==
 
<syntaxhighlight lang="applescript">(* Only non-accented English letters are altered here. *)
 
on caesarDecipher(txt, |key|)
Line 355 ⟶ 347:
{{output}}
 
<syntaxhighlight lang="applescript">"Text: 'ROMANES EUNT DOMUS!
The quick brown fox jumps over the lazy dog.'
Key: 9
Line 363 ⟶ 355:
ROMANES EUNT DOMUS!
The quick brown fox jumps over the lazy dog."</syntaxhighlight>
 
=={{header|Applesoft BASIC}}==
<syntaxhighlight lang=ApplesoftBasic"applesoftbasic">100 INPUT ""; T$
 
110 LET K% = RND(1) * 25 + 1
Line 428 ⟶ 419:
DECODED WITH CAESAR 25
PACK MY BOX WITH FIVE DOZEN LIQUOR JUGS</pre>
 
=={{header|Arc}}==
<syntaxhighlight lang=Arc"arc">
(= rot (fn (L N)
(if
Line 454 ⟶ 444:
 
{{Out}}
<syntaxhighlight lang="arc">
(caesar "The quick brown fox jumps over the lazy dog.")
"Gur dhvpx oebja sbk whzcf bire gur ynml qbt."
</syntaxhighlight>
 
=={{header|ARM Assembly}}==
{{works with|as|Raspberry Pi}}
<syntaxhighlight lang=ARM"arm Assemblyassembly">
/* ARM assembly Raspberry PI */
/* program caresarcode.s */
Line 636 ⟶ 625:
 
</syntaxhighlight>
 
=={{header|Arturo}}==
{{trans|11l}}
<syntaxhighlight lang="rebol">ia: to :integer `a`
iA: to :integer `A`
lowAZ: `a`..`z`
Line 668 ⟶ 656:
Encoded : Esp bftnv mczhy qzi ufxapo zgpc esp wlkj ozrd
Decoded : The quick brown fox jumped over the lazy dogs</pre>
 
=={{header|Astro}}==
<syntaxhighlight lang="python">fun caesar(s, k, decode: false):
if decode:
k = 26 - k
Line 683 ⟶ 670:
 
print(message, encrypted, decrypted, sep: '\n')</syntaxhighlight>
 
=={{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
<syntaxhighlight lang=AutoHotkey"autohotkey">n=2
s=HI
t:=&s
Line 693 ⟶ 679:
MsgBox % o</syntaxhighlight>
This next one is much more sane and handles input very well, including case.
<syntaxhighlight lang=AutoHotkey"autohotkey">Caesar(string, n){
Loop Parse, string
{
Line 708 ⟶ 694:
{{out}}<pre>j k
Bc</pre>
 
=={{header|AutoIt}}==
 
The Ceasar Funktion can enrcypt and decrypt, standart is Encryption, to Decrypt set third parameter to False
<syntaxhighlight lang="autoit">
$Caesar = Caesar("Hi", 2, True)
MsgBox(0, "Caesar", $Caesar)
Line 746 ⟶ 731:
EndFunc ;==>Caesar
</syntaxhighlight>
 
=={{header|AWK}}==
<syntaxhighlight lang="awk">
#!/usr/bin/awk -f
 
Line 799 ⟶ 783:
clear: MY HOVERCRAFT IS FULL OF EELS.
</pre>
 
=={{header|Babel}}==
 
<syntaxhighlight lang="babel">((main
{"The quick brown fox jumps over the lazy dog.\n"
dup <<
Line 859 ⟶ 842:
Kyv hlztb sifne wfo aldgj fmvi kyv crqp ufx.
The quick brown fox jumps over the lazy dog.</pre>
 
=={{header|BaCon}}==
<syntaxhighlight lang="qbasic">CONST lc$ = "abcdefghijklmnopqrstuvwxyz"
CONST uc$ = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
 
Line 894 ⟶ 876:
Decrypted: The quick brown fox jumps over the lazy dog.
</pre>
 
=={{header|bash}}==
Caesar cipher bash implementation
{{works with|GNU bash, version 4}}
 
<syntaxhighlight lang="bash">
caesar_cipher() {
 
Line 952 ⟶ 933:
Hello World!
</pre>
 
=={{header|BASIC256}}==
<syntaxhighlight lang="text">
# Caeser Cipher
# basic256 1.1.4.0
Line 996 ⟶ 976:
MY HOVERCRAFT IS FULL OF EELS.
</pre>
 
=={{header|BBC BASIC}}==
<syntaxhighlight lang="bbcbasic"> plaintext$ = "Pack my box with five dozen liquor jugs"
PRINT plaintext$
Line 1,025 ⟶ 1,004:
Zkmu wi lyh gsdr psfo nyjox vsaeyb teqc
Pack my box with five dozen liquor jugs</pre>
 
=={{header|Beads}}==
<syntaxhighlight lang=Beads"beads">beads 1 program 'Caesar cipher'
calc main_init
var str = "The five boxing wizards (🤖) jump quickly."
Line 1,065 ⟶ 1,043:
Decrypted: The five boxing wizards (🤖) jump quickly.
</pre>
 
=={{header|Befunge}}==
Almost direct copy of the [[Vigenère cipher#Befunge|Vigenère cipher]], although the code has been reversed and the first line eliminated because of the simpler key initialisation.
Line 1,071 ⟶ 1,048:
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.
 
<syntaxhighlight lang="befunge">65+>>>>10p100p1>:v:+>#*,#g1#0-#0:#!<<
"`"::_@#!`\*84:<~<$<^+"A"%*2+9<v"{"\`
**-"A"-::0\`\55*`+#^_\0g+"4"+4^>\`*48</syntaxhighlight>
Line 1,081 ⟶ 1,058:
The decrypter is essentially identical, except for a change of sign on the last line.
 
<syntaxhighlight lang="befunge">65+>>>>10p100p1>:v:+>#*,#g1#0-#0:#!<<
"`"::_@#!`\*84:<~<$<^+"A"%*2+9<v"{"\`
**-"A"-::0\`\55*`+#^_\0g-"4"+4^>\`*48</syntaxhighlight>
Line 1,088 ⟶ 1,065:
<pre>ESPBFTNVMCZHYQZIUFXAPOZGPCESPWLKJOZRD
THEQUICKBROWNFOXJUMPEDOVERTHELAZYDOGS</pre>
 
=={{header|BQN}}==
<syntaxhighlight lang="bqn">o ← @‿'A'‿@‿'a'‿@ ⋄ m ← 5⥊↕2 ⋄ p ← m⊏∞‿26
Rot ← {i←⊑"A[a{"⍋𝕩 ⋄ i⊑o+p|(𝕨×m)+𝕩-o}⎉0</syntaxhighlight>
 
Example:
 
<syntaxhighlight lang="bqn">3 Rot "We're no strangers to love // You know the rules and so do I"</syntaxhighlight>
<pre>"Zh'uh qr vwudqjhuv wr oryh // Brx nqrz wkh uxohv dqg vr gr L"</pre>
 
([https://mlochbaum.github.io/BQN/try.html#code=byDihpAgQOKAvydBJ+KAv0DigL8nYSfigL9AIOKLhCBtIOKGkCA14qWK4oaVMiDii4QgcCDihpAgbeKKj+KInuKAvzI2ClJvdCDihpAge2nihpDiipEiQVtheyLijYvwnZWpIOKLhCBp4oqRbytwfCjwnZWow5dtKSvwnZWpLW994o6JMAoKMyBSb3QgIldlJ3JlIG5vIHN0cmFuZ2VycyB0byBsb3ZlIC8vIFlvdSBrbm93IHRoZSBydWxlcyBhbmQgc28gZG8gSSIK online REPL])
 
=={{header|Brainf***}}==
<syntaxhighlight lang="bf"> Author: Ettore Forigo | Hexwell
 
+ start the key input loop
Line 1,322 ⟶ 1,297:
Input:
<!-- Using whitespace syntax highlighting to show the spaces, used by the program to separate arguments -->
<syntaxhighlight lang="whitespace">10 abc </syntaxhighlight>
Output:
<pre>klm</pre>
Input:
<syntaxhighlight lang="whitespace">16 klm </syntaxhighlight>
Output:
<pre>abc</pre>
 
=={{header|C}}==
<syntaxhighlight lang="c">#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Line 1,383 ⟶ 1,357:
return 0;
}</syntaxhighlight>
 
=={{header|C sharp|C#}}==
<syntaxhighlight lang="csharp">using System;
using System.Linq;
 
Line 1,429 ⟶ 1,402:
Encrypted: Ufhp rd gtc bnym knaj itejs qnvztw ozlx.
Decrypted: Pack my box with five dozen liquor jugs.</pre>
 
=={{header|C++}}==
<syntaxhighlight lang=Cpp"cpp">#include <string>
#include <iostream>
#include <algorithm>
Line 1,494 ⟶ 1,466:
===={{works with|C++-11}}====
 
<syntaxhighlight lang=Cpp"cpp">/* caesar cipher */
 
#include <string>
Line 1,560 ⟶ 1,532:
Decrypted: This is a line of plain text, 50 characters long.
</pre>
 
=={{header|Clojure}}==
Readable version:
<syntaxhighlight lang=Clojure"clojure">(defn encrypt-character [offset c]
(if (Character/isLetter c)
(let [v (int c)
Line 1,594 ⟶ 1,565:
 
Terser version using replace:
<syntaxhighlight lang=Clojure"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,608 ⟶ 1,579:
=> "The Quick Brown Fox jumped over the lazy dog"
</pre>
 
=={{header|COBOL}}==
COBOL-85 ASCII or EBCIDIC
<syntaxhighlight lang=COBOL"cobol">
identification division.
program-id. caesar.
Line 1,658 ⟶ 1,628:
 
{{works with|OpenCOBOL|2.0}}
<syntaxhighlight lang="cobol"> >>SOURCE FORMAT IS FREE
PROGRAM-ID. caesar-cipher.
 
Line 1,752 ⟶ 1,722:
Decrypted: The quick brown fox jumps over the lazy dog.
</pre>
 
=={{header|CoffeeScript}}==
<syntaxhighlight lang="coffeescript">cipher = (msg, rot) ->
msg.replace /([a-z|A-Z])/g, ($1) ->
c = $1.charCodeAt(0)
Line 1,770 ⟶ 1,739:
dcDc %^&*()
</pre>
 
=={{header|Commodore BASIC}}==
 
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.
 
<syntaxhighlight lang="gwbasic">1 rem caesar cipher
2 rem rosetta code
10 print chr$(147);chr$(14);
Line 1,847 ⟶ 1,815:
&#9608;
</pre>
 
=={{header|Common Lisp}}==
====Main version====
<syntaxhighlight 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,873 ⟶ 1,840:
Encrypted: Wkh ilyh eralqj zlcdugv mxps txlfnob
Decrypted: The five boxing wizards jump quickly</pre>
<syntaxhighlight lang="lisp">
(defun caesar-encipher (s k)
(map 'string #'(lambda (c) (z c k)) s))
Line 1,894 ⟶ 1,861:
1. Program
 
<syntaxhighlight lang="lisp">(defconstant +a+ "AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz")
(defun caesar (txt offset)
Line 1,911 ⟶ 1,878:
(caesar "Nir Pnrfne zbevghev gr fnyhgnag" -13)
Ave Caesar morituri te salutant</pre>
 
=={{header|Crystal}}==
<syntaxhighlight lang="crystal">class String
ALPHABET = ("A".."Z").to_a
 
Line 1,925 ⟶ 1,891:
decrypted = encrypted.caesar_cipher(-5)
</syntaxhighlight>
 
=={{header|Cubescript}}==
<syntaxhighlight lang="cubescript">alias modn [ mod (+ (mod $arg1 $arg2) $arg2) $arg2 ]
//Cubescript's built-in mod will fail on negative numbers
 
Line 1,987 ⟶ 1,952:
 
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.</syntaxhighlight>
 
=={{header|D}}==
<syntaxhighlight lang="d">import std.stdio, std.traits;
 
S rot(S)(in S s, in int key) pure nothrow @safe
Line 2,020 ⟶ 1,984:
Decrypted: The five boxing wizards jump quickly</pre>
Simpler in-place version (same output):
<syntaxhighlight lang="d">import std.stdio, std.ascii;
 
void inplaceRot(char[] txt, in int key) pure nothrow {
Line 2,042 ⟶ 2,006:
 
A version that uses the standard library (same output):
<syntaxhighlight lang="d">import std.stdio, std.ascii, std.string, std.algorithm;
 
string rot(in string s, in int key) pure nothrow @safe {
Line 2,059 ⟶ 2,023:
writeln("Decrypted: ", txt.rot(key).rot(26 - key));
}</syntaxhighlight>
 
=={{header|Dart}}==
<syntaxhighlight lang="dart">class Caesar {
int _key;
 
Line 2,146 ⟶ 2,109:
"Dro Aesmu Lbygx Pyh Tewzc Yfob Dro Vkji Nyq." decrypts to:
"The Quick Brown Fox Jumps Over The Lazy Dog."</pre>
 
=={{header|Delphi}}==
See [[#Pascal]].
 
=={{header|Dyalect}}==
 
{{trans|C#}}
 
<syntaxhighlight lang="dyalect">func Char.Encrypt(code) {
if !this.IsLetter() {
return this
Line 2,186 ⟶ 2,147:
Encrypted: Ufhp rd gtc bnym knaj itejs qnvztw ozlx.
Decrypted: Pack my box with five dozen liquor jugs.</pre>
 
=={{header|EDSAC order code}}==
The EDSAC had only upper-case letters, which were represented by 5-bit codes.
Line 2,200 ⟶ 2,160:
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).
<syntaxhighlight lang="edsac">
[Caesar cipher for Rosetta Code.
EDSAC program, Initial Orders 2.]
Line 2,429 ⟶ 2,389:
ENTER MESSAGE
</pre>
 
=={{header|Eiffel}}==
<syntaxhighlight lang="eiffel">
class
APPLICATION
Line 2,492 ⟶ 2,451:
Decoded string (after encoding and decoding): The tiny tiger totally taunted the tall Till.
</pre>
 
=={{header|Ela}}==
 
<syntaxhighlight lang="ela">open number char monad io string
 
chars = "ABCDEFGHIJKLMOPQRSTUVWXYZ"
Line 2,530 ⟶ 2,488:
Encoded string: "JGOOQ! VJKU KU C UGETGV PGUUCIG!"
Decoded string: "HELLO! THIS IS A SECRET MESSAGE!"</pre>
 
=={{header|Elena}}==
ELENA 4.x :
<syntaxhighlight lang="elena">import system'routines;
import system'math;
import extensions;
Line 2,614 ⟶ 2,571:
Decrypted text:Pack my box with five dozen liquor jugs.
</pre>
 
=={{header|Elixir}}==
<syntaxhighlight lang="elixir">defmodule Caesar_cipher do
defp set_map(map, range, key) do
org = Enum.map(range, &List.to_string [&1])
Line 2,641 ⟶ 2,597:
Decrypted: The five boxing wizards jump quickly
</pre>
 
=={{header|Erlang}}==
<syntaxhighlight lang=Erlang"erlang">
%% Ceasar cypher in Erlang for the rosetta code wiki.
%% Implemented by J.W. Luiten
Line 2,679 ⟶ 2,634:
 
</syntaxhighlight>
Command: <syntaxhighlight lang=Erlang"erlang">ceasar:main("The five boxing wizards jump quickly", 3).</syntaxhighlight>
{{out}}
<pre>
Line 2,686 ⟶ 2,641:
"The five boxing wizards jump quickly"
</pre>
 
=={{header|ERRE}}==
<syntaxhighlight lang=ERRE"erre">
PROGRAM CAESAR
 
Line 2,725 ⟶ 2,679:
Pack my box with five dozen liquor jugs
</pre>
 
=={{header|Euphoria}}==
{{works with|Euphoria|4.0.0}}
<syntaxhighlight lang=Euphoria"euphoria">
--caesar cipher for Rosetta Code wiki
--User:Lnettnay
Line 2,791 ⟶ 2,744:
"The Quick Brown Fox Jumps Over The Lazy Dog."
</pre>
 
=={{header|F_Sharp|F#}}==
<syntaxhighlight lang="fsharp">module caesar =
open System
 
Line 2,815 ⟶ 2,767:
val it : string = "The quick brown fox jumps over the lazy dog."
</pre>
 
=={{header|Factor}}==
{{works with|Factor|0.97}}
{{trans|F#}}
<syntaxhighlight lang="factor">USING: io kernel locals math sequences unicode.categories ;
IN: rosetta-code.caesar-cipher
 
Line 2,842 ⟶ 2,793:
Esp bftnv mczhy qzi ufxapo zgpc esp wlkj ozr.
</pre>
 
=={{header|Fantom}}==
 
Shifts upper/lower case letters, leaves other characters as they are.
 
<syntaxhighlight lang="fantom">
class Main
{
Line 2,919 ⟶ 2,869:
Decode: Encrypt - With ! Case,
</pre>
 
=={{header|Fhidwfe}}==
only encodes letters
<syntaxhighlight lang=Fhidwfe"fhidwfe">
lowers = ['a','z']
uppers = ['A','Z']
Line 2,966 ⟶ 2,915:
//this compiles with only 6 warnings!
</syntaxhighlight>
 
=={{header|Forth}}==
<syntaxhighlight lang="forth">: ceasar ( c n -- c )
over 32 or [char] a -
dup 0 26 within if
Line 2,987 ⟶ 2,935:
3 ceasar-inverse test 2@ ceasar-string
test 2@ cr type</syntaxhighlight>
 
=={{header|Fortran}}==
{{works with|Fortan 90 and later}}
<syntaxhighlight lang="fortran">program Caesar_Cipher
implicit none
 
Line 3,037 ⟶ 2,984:
Encrypted message = Wkh ilyh eralgj zlcdugv mxps txlfnob
Decrypted message = The five boxing wizards jump quickly</pre>
 
=={{header|FreeBASIC}}==
<syntaxhighlight lang="freebasic">' FB 1.05.0 Win64
 
Sub Encrypt(s As String, key As Integer)
Line 3,087 ⟶ 3,033:
Decrypted : Bright vixens jump; dozy fowl quack.
</pre>
 
=={{header|Gambas}}==
'''[https://gambas-playground.proko.eu/?gist=cb96008082bc0d8278224cd2a5ec74d3 Click this link to run this code]'''
<syntaxhighlight 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,115 ⟶ 3,060:
Wkh ilyh eralqj zlcdugv mxps txlfnob
</pre>
 
=={{header|GAP}}==
<syntaxhighlight lang="gap">CaesarCipher := function(s, n)
local r, c, i, lower, upper;
lower := "abcdefghijklmnopqrstuvwxyz";
Line 3,143 ⟶ 3,087:
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."</syntaxhighlight>
 
=={{header|GFA Basic}}==
<syntaxhighlight lang="basic">
'
' Caesar cypher
Line 3,183 ⟶ 3,126:
ENDFUNC
</syntaxhighlight>
 
=={{header|Go}}==
Obvious solution with explicit testing for character ranges:
<syntaxhighlight lang="go">package main
 
import (
Line 3,246 ⟶ 3,188:
}</syntaxhighlight>
Data driven version using functions designed for case conversion. (And for method using % operator, see [[Vigen%C3%A8re_cipher#Go]].)
<syntaxhighlight lang="go">package main
 
import (
Line 3,318 ⟶ 3,260:
Key 26 invalid
</pre>
 
=={{header|Groovy}}==
Java style:
<syntaxhighlight lang="groovy">def caesarEncode(​cipherKey, text) {
def builder = new StringBuilder()
text.each { character ->
Line 3,336 ⟶ 3,277:
 
Functional style:
<syntaxhighlight lang="groovy">def caesarEncode(cipherKey, text) {
text.chars.collect { c ->
int off = c.isUpperCase() ? 'A' : 'a'
Line 3,345 ⟶ 3,286:
 
Ninja style:
<syntaxhighlight lang="groovy">def caesarEncode(k, text) {
(text as int[]).collect { it==' ' ? ' ' : (((it & 0x1f) + k - 1) % 26 + 1 | it & 0xe0) as char }.join()
}
Line 3,351 ⟶ 3,292:
Using built in 'tr' function and a replacement alphabet:
<syntaxhighlight 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) }</syntaxhighlight>
and the same with closures for somewhat better readability:
<syntaxhighlight 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'))
Line 3,362 ⟶ 3,303:
def caesarDecode(cipherKey, text) { caesarEncode(26 - cipherKey, text) }</syntaxhighlight>
Test code:
<syntaxhighlight lang="groovy">
def plainText = "The Quick Brown Fox jumped over the lazy dog"
def cipherKey = 12
Line 3,379 ⟶ 3,320:
cypherText(12): Ftq Cguow Ndaiz Raj vgybqp ahqd ftq xmlk pas
decodedText(12): The Quick Brown Fox jumped over the lazy dog</pre>
 
=={{header|Haskell}}==
<syntaxhighlight lang="haskell">module Caesar (caesar, uncaesar) where
 
import Data.Char
Line 3,409 ⟶ 3,349:
Similarly, but allowing for negative cipher keys, and using isAlpha, isUpper, negate:
 
<syntaxhighlight lang="haskell">import Data.Bool (bool)
import Data.Char (chr, isAlpha, isUpper, ord)
 
Line 3,438 ⟶ 3,378:
 
Or with proper error handling:
<syntaxhighlight lang="haskell">{-# LANGUAGE LambdaCase #-}
module Main where
 
Line 3,470 ⟶ 3,410:
where b' = fromIntegral $ ord b
c' = fromIntegral $ ord c</syntaxhighlight>
 
=={{header|Hoon}}==
<syntaxhighlight lang=Hoon"hoon">|%
++ enc
|= [msg=tape key=@ud]
Line 3,481 ⟶ 3,420:
(enc msg (sub 26 key))
--</syntaxhighlight>
 
=={{header|Icon}} and {{header|Unicon}}==
Strictly speaking a Ceasar Cipher is a shift of 3 (the default in this case).
<syntaxhighlight lang=Icon"icon">procedure main()
ctext := caesar(ptext := map("The quick brown fox jumped over the lazy dog"))
dtext := caesar(ctext,,"decrypt")
Line 3,505 ⟶ 3,443:
Encphered text = "wkh txlfn eurzq ira mxpshg ryhu wkh odcb grj"
Decphered text = "the quick brown fox jumped over the lazy dog"</pre>
 
=={{header|IS-BASIC}}==
<syntaxhighlight lang=IS"is-BASICbasic">100 PROGRAM "CaesarCi.bas"
110 STRING M$*254
120 INPUT PROMPT "String: ":M$
Line 3,548 ⟶ 3,485:
490 LET M$=T$
500 END DEF</syntaxhighlight>
 
=={{header|J}}==
If we assume that the task also requires us to leave non-alphabetic characters alone:
<syntaxhighlight lang="j">cndx=: [: , 65 97 +/ 26 | (i.26)&+
caesar=: (cndx 0)}&a.@u:@cndx@[ {~ a.i.]</syntaxhighlight>
Example use:<syntaxhighlight lang="j"> 2 caesar 'This simple "monoalphabetic substitution cipher" provides almost no security, ...'
Vjku ukorng "oqpqcnrjcdgvke uwduvkvwvkqp ekrjgt" rtqxkfgu cnoquv pq ugewtkva, ...</syntaxhighlight>
If we instead assume the task only requires we treat upper case characters:
<syntaxhighlight lang="j">CAESAR=:1 :'(26|m&+)&.((26{.64}.a.)&i.)'</syntaxhighlight>
Example use:<syntaxhighlight lang="j"> 20 CAESAR 'HI'
BC</syntaxhighlight>
 
=={{header|Janet}}==
<syntaxhighlight lang="janet">
(def alphabet "abcdefghijklmnopqrstuvwxyz")
 
Line 3,599 ⟶ 3,534:
"thequickbrownfoxjumpsoverthelazydog"
</pre>
 
=={{header|Java}}==
{{works with|Java|1.5+}}
<syntaxhighlight lang="java5">public class Cipher {
public static void main(String[] args) {
 
Line 3,637 ⟶ 3,571:
The quick brown fox Jumped over the lazy Dog
</pre>
 
=={{header|JavaScript}}==
 
===ES5===
 
<syntaxhighlight 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,665 ⟶ 3,598:
===ES6===
 
<syntaxhighlight lang="javascript">var caesar = (text, shift) => text
.toUpperCase()
.replace(/[^A-Z]/g, '')
Line 3,674 ⟶ 3,607:
Or, allowing encoding and decoding of both lower and upper case:
 
<syntaxhighlight lang=JavaScript"javascript">((key, strPlain) => {
 
// Int -> String -> String
Line 3,720 ⟶ 3,653:
{{Out}}
<pre>Mebsy, Mockbo foxxo, o fsno o fsxco ? , -> , Curio, Cesare venne, e vide e vinse ?</pre>
 
=={{header|jq}}==
{{trans|Wren}}
{{works with|jq}}
'''Works with gojq, the Go implementation of jq'''
<syntaxhighlight lang="jq">def encrypt(key):
. as $s
| explode as $xs
Line 3,762 ⟶ 3,694:
Bright vixens jump; dozy fowl quack.
</pre>
 
 
=={{header|Jsish}}==
From Typescript entry.
<syntaxhighlight lang="javascript">/* Caesar cipher, in Jsish */
"use strict";
 
Line 3,803 ⟶ 3,733:
<pre>prompt$ jsish -u caesarCipher.jsi
[PASS] caesarCipher.jsi</pre>
 
=={{header|Julia}}==
===updated version for Julia 1.x | Rename isalpha to isletter #27077 | https://github.com/JuliaLang/julia/pull/27077===
 
<syntaxhighlight lang="julia">
# Caeser cipher
# Julia 1.5.4
Line 3,845 ⟶ 3,774:
"Zntvp Rapelcgvba"
</pre>
 
=={{header|K}}==
 
Assumes lowercase letters, and no punctuation.
 
<syntaxhighlight lang="k">
s:"there is a tide in the affairs of men"
caesar:{ :[" "=x; x; {x!_ci 97+!26}[y]@_ic[x]-97]}'
Line 3,856 ⟶ 3,784:
"uifsf jt b ujef jo uif bggbjst pg nfo"
</syntaxhighlight>
 
=={{header|Kotlin}}==
<syntaxhighlight lang="scala">// version 1.0.5-2
 
object Caesar {
Line 3,899 ⟶ 3,826:
Bright vixens jump; dozy fowl quack.
</pre>
 
=={{header|LabVIEW}}==
For readability, input is in all caps.<br/>{{VI snippet}}<br/>[[File:LabVIEW_Caesar_cipher.png]]
 
=={{header|Lambdatalk}}==
The caesar function encodes and decodes texts containing exclusively the set [ABCDEFGHIJKLMNOPQRSTUVWXZ].
<syntaxhighlight lang="scheme">
{def caesar
 
Line 3,976 ⟶ 3,901:
 
</syntaxhighlight>
 
=={{header|langur}}==
Using the built-in rotate() function on a number over a range, a number outside of the range will pass through unaltered.
 
<syntaxhighlight lang="langur">val .rot = f(.s, .key) {
cp2s map(f(.c) rotate(rotate(.c, .key, 'a'..'z'), .key, 'A'..'Z'), s2cp .s)
}
Line 3,995 ⟶ 3,919:
encrypted: X nrfzh yoltk clu grjmba lsbo pljbqefkd.
decrypted: A quick brown fox jumped over something.</pre>
 
=={{header|Liberty BASIC}}==
<syntaxhighlight lang="lb">key = 7
 
Print "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
Line 4,021 ⟶ 3,944:
Next i
End Function</syntaxhighlight>
 
=={{header|LiveCode}}==
<syntaxhighlight lang=LiveCode"livecode">function caesarCipher rot phrase
local rotPhrase, lowerLetters, upperLetters
put "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz" into lowerLetters
Line 4,039 ⟶ 3,961:
return rotPhrase
end caesarCipher</syntaxhighlight>
 
=={{header|Logo}}==
{{trans|Common Lisp}}
{{works with|UCB Logo}}
<syntaxhighlight lang="logo">; some useful constants
make "lower_a ascii "a
make "lower_z ascii "z
Line 4,082 ⟶ 4,003:
Encrypted: Wkh ilyh eralqj zlcdugv mxps txlfnob
Recovered: The five boxing wizards jump quickly</pre>
 
=={{header|Lua}}==
 
<syntaxhighlight lang=Lua"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,119 ⟶ 4,039:
 
'''Fast version'''
<syntaxhighlight lang=Lua"lua">local memo = {}
 
local function make_table(k)
Line 4,151 ⟶ 4,071:
return string.char(unpack(res_t))
end</syntaxhighlight>
 
=={{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.
 
<syntaxhighlight lang=M2000"m2000 Interpreterinterpreter">
a$="THIS IS MY TEXT TO ENCODE WITH CAESAR CIPHER"
Function Cipher$(a$, N) {
Line 4,174 ⟶ 4,093:
 
</syntaxhighlight>
 
=={{header|Maple}}==
<syntaxhighlight lang=Maple"maple">
> StringTools:-Encode( "The five boxing wizards jump quickly", encoding = alpharot[3] );
"Wkh ilyh eralqj zlcdugv mxps txlfnob"
Line 4,184 ⟶ 4,102:
</syntaxhighlight>
(The symbol % refers the the last (non-NULL) value computed.)
 
=={{header|Mathematica}} / {{header|Wolfram Language}}==
<syntaxhighlight lang=Mathematica"mathematica">cypher[mesg_String,n_Integer]:=StringReplace[mesg,Flatten[Thread[Rule[#,RotateLeft[#,n]]]&/@CharacterRange@@@{{"a","z"},{"A","Z"}}]]</syntaxhighlight>
{{out}}
<pre>cypher["The five boxing wizards jump quickly",3]
-> Wkh ilyh eralqj zlcdugv mxps txlfnob</pre>
 
=={{header|MATLAB}} / {{header|Octave}}==
<syntaxhighlight lang=Matlab"matlab"> function s = cipherCaesar(s, key)
s = char( mod(s - 'A' + key, 25 ) + 'A');
end;
Line 4,199 ⟶ 4,115:
end; </syntaxhighlight>
Here is a test:
<syntaxhighlight lang=Matlab"matlab"> decipherCaesar(cipherCaesar('ABC',4),4)
ans = ABC </syntaxhighlight>
 
=={{header|Microsoft Small Basic}}==
<syntaxhighlight lang=Microsoft"microsoft Smallsmall Basicbasic">
TextWindow.Write("Enter a 1-25 number key (-ve number to decode): ")
key = TextWindow.ReadNumber()
Line 4,241 ⟶ 4,156:
Press any key to continue...
</pre>
 
=={{header|MiniScript}}==
<syntaxhighlight lang=MiniScript"miniscript">caesar = function(s, key)
chars = s.values
for i in chars.indexes
Line 4,259 ⟶ 4,173:
<pre>Olssv dvysk!
Hello world!</pre>
 
=={{header|ML}}==
==={{header|mLite}}===
In this implementation, the offset can be positive or negative and is wrapped around if greater than 25 or less than -25.
<syntaxhighlight lang="ocaml">fun readfile () = readfile []
| x = let val ln = readln ()
in if eof ln then
Line 4,308 ⟶ 4,221:
Output:
<pre>Ocz xvo nvo ji ocz hvo</pre>
 
=={{header|Modula-2}}==
{{trans|Java}}
<syntaxhighlight lang="modula2">MODULE CaesarCipher;
FROM Conversions IMPORT IntToStr;
FROM Terminal IMPORT WriteString, WriteLn, ReadChar;
Line 4,388 ⟶ 4,300:
ReadChar;
END CaesarCipher.</syntaxhighlight>
 
=={{header|Modula-3}}==
This implementation distinguishes between "encoding" and "encryption."
Line 4,396 ⟶ 4,307:
It also illustrates the use of exceptions in Modula-3.
 
<syntaxhighlight lang="modula3">MODULE Caesar EXPORTS Main;
 
IMPORT IO, IntSeq, Text;
Line 4,488 ⟶ 4,399:
whencaesarsetofftogaul
</pre>
 
=={{header|Nanoquery}}==
<syntaxhighlight lang=Nanoquery"nanoquery">def caesar_encode(plaintext, shift)
uppercase = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
lowercase = "abcdefghijklmnopqrstuvwxyz"
Line 4,525 ⟶ 4,435:
return plaintext
end</syntaxhighlight>
 
=={{header|NetRexx}}==
The cipher code in this sample is also used in the [[Rot-13#NetRexx|Rot-13&nbsp;&ndash;&nbsp;NetRexx]] task.
<syntaxhighlight lang=NetRexx"netrexx">/* NetRexx */
 
options replace format comments java crossref savelog symbols nobinary
Line 4,712 ⟶ 4,621:
HI
</pre>
 
=={{header|Nim}}==
{{trans|Python}}
<syntaxhighlight lang="nim">import strutils
 
proc caesar(s: string, k: int, decode = false): string =
Line 4,729 ⟶ 4,637:
echo enc
echo caesar(enc, 11, decode = true)</syntaxhighlight>
 
=={{header|Oberon-2}}==
Works with oo2c version2
<syntaxhighlight lang="oberon2">
MODULE Caesar;
IMPORT
Line 4,799 ⟶ 4,706:
The five boxing wizards jump quickly =e=> Wkh ilyh eralqj zlcdugv mxps txlfnob =d=> The five boxing wizards jump quickly
</pre>
 
=={{header|Objeck}}==
<syntaxhighlight lang="objeck">
class Caesar {
function : native : Encode(enc : String, offset : Int) ~ String {
Line 4,837 ⟶ 4,743:
the quick brown fox jumped over the lazy dog
</pre>
 
=={{header|OCaml}}==
<syntaxhighlight lang="ocaml">let islower c =
c >= 'a' && c <= 'z'
 
Line 4,864 ⟶ 4,769:
c
) str</syntaxhighlight>
<syntaxhighlight lang="ocaml">let () =
let key = 3 in
let orig = "The five boxing wizards jump quickly" in
Line 4,878 ⟶ 4,783:
The five boxing wizards jump quickly
equal: true</pre>
 
=={{header|Oforth}}==
 
<syntaxhighlight lang=Oforth"oforth">: ceasar(c, key)
c dup isLetter ifFalse: [ return ]
isUpper ifTrue: [ 'A' ] else: [ 'a' ] c key + over - 26 mod + ;
Line 4,896 ⟶ 4,800:
Pack my box with five dozen liquor jugs.
</pre>
 
=={{header|OOC}}==
<syntaxhighlight lang="ooc">main: func (args: String[]) {
shift := args[1] toInt()
if (args length != 3) {
Line 4,922 ⟶ 4,825:
$ ./caesar -9 "Yet another, fairly original sentence!"
Pvk refkyvi, wrzicp fizxzerc jvekvetv!</pre>
 
=={{header|PARI/GP}}==
<syntaxhighlight 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);</syntaxhighlight>
 
=={{header|Pascal}}==
<syntaxhighlight lang="pascal">Program CaesarCipher(output);
 
procedure encrypt(var message: string; key: integer);
Line 4,975 ⟶ 4,876:
Decrypted message: The five boxing wizards jump quickly
>: </pre>
 
=={{header|Perl}}==
 
<syntaxhighlight lang=Perl"perl">sub caesar {
my ($message, $key, $decode) = @_;
$key = 26 - $key if $decode;
Line 4,995 ⟶ 4,895:
enc: DRO PSFO LYHSXQ GSJKBNC TEWZ AESMUVI
dec: THE FIVE BOXING WIZARDS JUMP QUICKLY</pre>
 
=={{header|Phix}}==
<!--<syntaxhighlight lang=Phix"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,026 ⟶ 4,925:
Back to back they faced each other, drew their swords and shot each other. %^&*()[
</pre>
 
=={{header|PHP}}==
<syntaxhighlight lang="php"><?php
function caesarEncode( $message, $key ){
$plaintext = strtolower( $message );
Line 5,052 ⟶ 4,950:
Or, using PHP's '''strtr()''' built-in function
 
<syntaxhighlight lang="php"><?php
 
function caesarEncode($message, $key) {
Line 5,064 ⟶ 4,962:
{{out}}
<pre>FTQ CGUOW NDAIZ RAJ VGYBQP AHQD FTQ XMLK PAS</pre>
 
=={{header|Picat}}==
<syntaxhighlight lang=Picat"picat">main =>
S = "All human beings are born free and equal in dignity and rights.",
println(S),
Line 5,096 ⟶ 4,993:
Fqq mzrfs gjnslx fwj gtws kwjj fsi jvzfq ns inlsnyd fsi wnlmyx.
All human beings are born free and equal in dignity and rights.</pre>
 
=={{header|PicoLisp}}==
<syntaxhighlight lang=PicoLisp"picolisp">(setq *Letters (apply circ (mapcar char (range 65 90))))
 
(de caesar (Str Key)
Line 5,114 ⟶ 5,010:
: (caesar @ (- 26 7))
-> "THEQUICKBROWNFOXJUMPEDOVERTHELAZYDOGSBACK"</pre>
 
=={{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.
<syntaxhighlight lang=Pike"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,133 ⟶ 5,028:
The quick brown fox jumped over the lazy dogs
</pre>
 
=={{header|PL/I}}==
<syntaxhighlight lang="pli">caesar: procedure options (main);
declare cypher_string character (52) static initial
((2)'ABCDEFGHIJKLMNOPQRSTUVWXYZ');
Line 5,161 ⟶ 5,055:
Decyphered text= THEQUICKBROWNFOXJUMPSOVERTHELAZYDOG
</pre>
 
=={{header|PowerShell}}==
<syntaxhighlight lang=Powershell"powershell"># Author: M. McNabb
function Get-CaesarCipher
{
Line 5,254 ⟶ 5,147:
Vsxo drboo;
</pre>
 
=={{header|Prolog}}==
{{Works with|SWI-Prolog}}
{{libheader|clpfd}}
<syntaxhighlight lang=Prolog"prolog">:- use_module(library(clpfd)).
 
caesar :-
Line 5,298 ⟶ 5,190:
true .
</pre>
 
=={{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.
<syntaxhighlight lang=PureBasic"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,344 ⟶ 5,235:
===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.
<syntaxhighlight lang=PureBasic"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,365 ⟶ 5,256:
ProcedureReturn result
EndProcedure</syntaxhighlight>
 
=={{header|Python}}==
<syntaxhighlight lang=Python"python">def caesar(s, k, decode = False):
if decode: k = 26 - k
return "".join([chr((ord(i) - 65 + k) % 26 + 65)
Line 5,384 ⟶ 5,274:
Alternate solution
{{works with|Python|2.x}} (for 3.x change <code>string.maketrans</code> to <code>str.maketrans</code>)
<syntaxhighlight lang="python">import string
def caesar(s, k, decode = False):
if decode: k = 26 - k
Line 5,408 ⟶ 5,298:
Variant with memoization of translation tables
{{works with|Python|3.x}}
<syntaxhighlight lang="python">import string
def caesar(s, k = 13, decode = False, *, memo={}):
if decode: k = 26 - k
Line 5,421 ⟶ 5,311:
 
A compact alternative solution
<syntaxhighlight lang="python">
from string import ascii_uppercase as abc
 
Line 5,437 ⟶ 5,327:
THEQUICKBROWNFOXJUMPEDOVERTHELAZYDOGS
</pre>
 
 
=={{header|QBasic}}==
{{works with|QBasic}}
Line 5,444 ⟶ 5,332:
{{works with|True BASIC}} Note that TrueBasic uses '!' for comments
{{trans|BASIC256}}
<syntaxhighlight lang=QBasic"qbasic">LET dec$ = ""
LET tipo$ = "cleartext "
 
Line 5,476 ⟶ 5,364:
NEXT i
END</syntaxhighlight>
 
=={{header|Quackery}}==
<syntaxhighlight lang=Quackery"quackery"> [ dup upper != ] is lower? ( c --> b )
 
[ dup lower != ] is upper? ( c --> b )
Line 5,507 ⟶ 5,394:
Cbob ifybkqbo eljfkbp fa nrla slirkq zobarkq.
Fere libenter homines id quod volunt credunt.</pre>
 
=={{header|R}}==
This is a generalization of the Rot-13 solution for R at: http://rosettacode.org/wiki/Rot-13#R .
<syntaxhighlight lang=R"r">
# based on Rot-13 solution: http://rosettacode.org/wiki/Rot-13#R
ceasar <- function(x, key)
Line 5,553 ⟶ 5,439:
[1] "Decrypted Text: The five boxing wizards jump quickly."
</pre>
 
=={{header|Racket}}==
<syntaxhighlight lang="racket">
#lang racket
Line 5,584 ⟶ 5,469:
"The five boxing wizards jump quickly."
</pre>
 
=={{header|Raku}}==
(formerly Perl 6)
{{works with|Rakudo|2015.12}}
<syntaxhighlight lang="raku" line>my @alpha = 'A' .. 'Z';
sub encrypt ( $key where 1..25, $plaintext ) {
$plaintext.trans( @alpha Z=> @alpha.rotate($key) );
Line 5,608 ⟶ 5,492:
THE FIVE BOXING WIZARDS JUMP QUICKLY
OK</pre>
 
=={{header|Red}}==
<syntaxhighlight lang="red">
Red ["Ceasar Cipher"]
 
Line 5,646 ⟶ 5,529:
>>
</pre>
 
=={{header|Retro}}==
Retro provides a number of classical cyphers in the '''crypto'''' library. This implementation is from the library.
<syntaxhighlight lang=Retro"retro">{{
variable offset
: rotate ( cb-c ) tuck - @offset + 26 mod + ;
Line 5,663 ⟶ 5,545:
"THEYBROKEOURCIPHEREVERYONECANREADTHIS" 3 ceaser ( returns encrypted string )
23 ceaser ( returns decrypted string )</syntaxhighlight>
 
=={{header|REXX}}==
===only Latin letters===
This version conforms to the task's restrictions.
<syntaxhighlight 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,700 ⟶ 5,581:
This version allows upper and lowercase Latin alphabet as well as all the
characters on the standard (computer) keyboard including blanks.
<syntaxhighlight 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,729 ⟶ 5,610:
uncyphered: Batman's hood is called a "cowl" (old meaning).
</pre>
 
=={{header|Ring}}==
<syntaxhighlight lang="ring">
# Project : Caesar cipher
 
Line 5,803 ⟶ 5,683:
pack my box with five dozen liquor jugs
</pre>
 
=={{header|Ruby}}==
<syntaxhighlight lang="ruby">class String
ALFABET = ("A".."Z").to_a
 
Line 5,818 ⟶ 5,697:
decrypted = encypted.caesar_cipher(-3)
</syntaxhighlight>
 
=={{header|Run BASIC}}==
<syntaxhighlight lang="runbasic">input "Gimme a ofset:";ofst ' set any offset you like
 
a$ = "Pack my box with five dozen liquor jugs"
Line 5,846 ⟶ 5,724:
Encrypted: Zkmu wi lyh gsdr psfo nyjox vsaeyb teqc
Decrypted: Pack my box with five dozen liquor jugs</pre>
 
=={{header|Rust}}==
This example shows proper error handling. It skips non-ASCII characters.
<syntaxhighlight lang="rust">use std::io::{self, Write};
use std::fmt::Display;
use std::{env, process};
Line 5,885 ⟶ 5,762:
process::exit(code);
}</syntaxhighlight>
 
=={{header|Scala}}==
<syntaxhighlight lang="scala">object Caesar {
private val alphaU='A' to 'Z'
private val alphaL='a' to 'z'
Line 5,899 ⟶ 5,775:
private def rot(a:IndexedSeq[Char], c:Char, key:Int)=a((c-a.head+key+a.size)%a.size)
}</syntaxhighlight>
<syntaxhighlight lang="scala">val text="The five boxing wizards jump quickly"
println("Plaintext => " + text)
val encoded=Caesar.encode(text, 3)
Line 5,912 ⟶ 5,788:
This version first creates non shifted and shifted character sequences
and then encodes and decodes by indexing between those sequences.
<syntaxhighlight 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,925 ⟶ 5,801:
}</syntaxhighlight>
 
<syntaxhighlight lang="scala">val text = "The five boxing wizards jump quickly"
val myCaeser = new Caeser(3)
val encoded = text.map(c => myCaeser.encode(c))
Line 5,936 ⟶ 5,812:
Ciphertext => Wkh ilyh eralqj zlcdugv mxps txlfnob
Decrypted => The five boxing wizards jump quickly</pre>
 
=={{header|Scheme}}==
 
<syntaxhighlight lang="scheme">;
; Works with R7RS-compatible Schemes (e.g. Chibi).
; Also current versions of Chicken, Gauche and Kawa.
Line 5,972 ⟶ 5,847:
Gur dhvpx oebja sbk whzcf bire gur ynml qbt.
</pre>
 
=={{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.
<syntaxhighlight lang="sed">#!/bin/sed -rf
# Input: <number 0..25>\ntext to encode
 
Line 6,024 ⟶ 5,898:
Error: Key must be <= 25
</pre>
 
=={{header|Seed7}}==
<syntaxhighlight lang="seed7">$ include "seed7_05.s7i";
 
const func string: rot (in string: stri, in integer: encodingKey) is func
Line 6,061 ⟶ 5,934:
Decrypted: The five boxing wizards jump quickly
</pre>
 
=={{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.
<syntaxhighlight lang="sequencel">import <Utilities/Sequence.sl>;
import <Utilities/Conversion.sl>;
 
Line 6,103 ⟶ 5,975:
Decrypted: Pack my box with five dozen liquor jugs."
</pre>
 
=={{header|Sidef}}==
{{trans|Perl}}
<syntaxhighlight 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,126 ⟶ 5,997:
dec: THE FIVE BOXING WIZARDS JUMP QUICKLY
</pre>
 
=={{header|Sinclair ZX81 BASIC}}==
Works with 1k of RAM. A negative key decodes.
<syntaxhighlight lang="basic"> 10 INPUT KEY
20 INPUT T$
30 LET C$=""
Line 6,152 ⟶ 6,022:
{{out}}
<pre>GALLIA EST OMNIS DIVISA IN PARTES TRES</pre>
 
=={{header|Smalltalk}}==
{{works with|Smalltalk/X}}
well, I'm lucky: the standard library already contains a rot:n method!
<syntaxhighlight lang=Smalltalk"smalltalk">'THE QUICK BROWN FOX' rot:3 -> 'WKH TXLFN EURZQ IRA' </syntaxhighlight>
but if it wasn't, here is an implementation for other smalltalks:
<syntaxhighlight lang="smalltalk">
!CharacterArray methodsFor:'encoding'!
rot:n
Line 6,179 ⟶ 6,048:
 
</syntaxhighlight>
 
=={{header|SSEM}}==
ASCII didn't exit in 1948, and the task specification explicitly says we only need to convert Roman capitals; so we adopt a simpler encoding, representing the letters of the alphabet from <tt>A</tt>=0 to <tt>Z</tt>=25.
Line 6,186 ⟶ 6,054:
 
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.
<syntaxhighlight lang="ssem">00101000000000100000000000000000 0. -20 to c
11001000000000010000000000000000 1. Sub. 19
10101000000001100000000000000000 2. c to 21
Line 6,205 ⟶ 6,073:
11010000000000000000000000000000 17. 11
01011000000000000000000000000000 18. 26</syntaxhighlight>
 
=={{header|Stata}}==
 
<syntaxhighlight lang="stata">function caesar(s, k) {
u = ascii(s)
i = selectindex(u:>=65 :& u:<=90)
Line 6,219 ⟶ 6,086:
caesar("layout", 20)
fusion</syntaxhighlight>
 
=={{header|Swift}}==
<syntaxhighlight lang="swift">
func usage(_ e:String) {
print("error: \(e)")
Line 6,305 ⟶ 6,171:
main()
</syntaxhighlight>
 
=={{header|Tcl}}==
<syntaxhighlight lang="tcl">package require Tcl 8.6; # Or TclOO package for 8.5
 
oo::class create Caesar {
Line 6,331 ⟶ 6,196:
}</syntaxhighlight>
Demonstrating:
<syntaxhighlight lang="tcl">set caesar [Caesar new 3]
set txt "The five boxing wizards jump quickly."
set enc [$caesar encrypt $txt]
Line 6,344 ⟶ 6,209:
Decrypted message = The five boxing wizards jump quickly.
</pre>
 
=={{header|TUSCRIPT}}==
<syntaxhighlight lang="tuscript">$$ MODE TUSCRIPT
text="THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG"
PRINT "text orginal ",text
Line 6,376 ⟶ 6,240:
encoded decoded THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG
</pre>
 
=={{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.
<syntaxhighlight lang="txr">@(next :args)
@(cases)
@{key /[0-9]+/}
Line 6,410 ⟶ 6,273:
decoded: Jgnnq, yqtnf!
</pre>
 
=={{header|TypeScript}}==
<syntaxhighlight 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,426 ⟶ 6,288:
console.log('Enciphered: ' + encoded);
console.log('Deciphered: ' + decoded);</syntaxhighlight>
 
=={{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.
<syntaxhighlight lang="bash">caesar() {
local OPTIND
local encrypt n=0
Line 6,491 ⟶ 6,352:
encrypted: Ymj knaj gtcnsl bnefwix ozru vznhpqd.
decrypted: The five boxing wizards jump quickly.</pre>
 
=={{header|Ursa}}==
<syntaxhighlight lang="ursa">decl string mode
while (not (or (= mode "encode") (= mode "decode")))
out "encode/decode: " console
Line 6,521 ⟶ 6,381:
end for
out endl console</syntaxhighlight>
 
=={{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.
<syntaxhighlight lang=Ursala"ursala">#import std
#import nat
 
Line 6,587 ⟶ 6,446:
sgd ehud anwhmf vhyzqcr itlo pthbjkx SGD EHUD ANWHMF VHYZQCR ITLO PTHBJKX
the five boxing wizards jump quickly THE FIVE BOXING WIZARDS JUMP QUICKLY</pre>
 
=={{header|Vala}}==
This is a port of the C# code present in this page.
<syntaxhighlight lang=Vala"vala">static void println(string str) {
stdout.printf("%s\r\n", str);
}
Line 6,630 ⟶ 6,488:
The quick brown fox jumped over the lwzy dog
</pre>
 
=={{header|VBA}}==
 
<syntaxhighlight lang="vb">
Option Explicit
 
Line 6,673 ⟶ 6,530:
<pre>QOSGOF: Kvc wg wh wb hvs dfsgg hvoh qozzg cb as? W vsof o hcbuis, gvfwzzsf hvob ozz hvs aigwq, Qfm 'Qosgof!' Gdsoy; Qosgof wg hifb'r hc vsof.
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.</pre>
 
=={{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.
<syntaxhighlight lang="vb">
str = "IT WAS THE BEST OF TIMES, IT WAS THE WORST OF TIMES."
 
Line 6,720 ⟶ 6,576:
IT WAS THE BEST OF TIMES, IT WAS THE WORST OF TIMES.
</pre>
 
=={{header|Vedit macro language}}==
This implementation ciphers/deciphers a highlighted block of text in-place in current edit buffer.
<syntaxhighlight lang="vedit">#10 = Get_Num("Enter the key: positive to cipher, negative to de-cipher: ", STATLINE)
 
Goto_Pos(Block_Begin)
Line 6,741 ⟶ 6,596:
Decrypted text: Quick brown Fox jumps over the lazy Dog.
</pre>
 
=={{header|Visual Basic .NET}}==
{{trans|C#}}
<syntaxhighlight lang="vbnet">Module Module1
 
Function Encrypt(ch As Char, code As Integer) As Char
Line 6,779 ⟶ 6,633:
Encrypted: Ufhp rd gtc bnym knaj itejs qnvztw ozlx.
Decrypted: Pack my box with five dozen liquor jugs.</pre>
 
=={{header|Wortel}}==
<syntaxhighlight lang="wortel">@let {
; this function only replaces letters and keeps case
ceasar &[s n] !!s.replace &"[a-z]"gi &[x] [
Line 6,801 ⟶ 6,654:
Returns:
<pre>"klm $%^ KLM"</pre>
 
=={{header|Wren}}==
{{trans|Kotlin}}
<syntaxhighlight lang="ecmascript">class Caesar {
static encrypt(s, key) {
var offset = key % 26
Line 6,836 ⟶ 6,688:
Bright vixens jump; dozy fowl quack.
</pre>
 
=={{header|X86 Assembly}}==
{{trans|C custom implementation}}
{{works with|GCC|7.3.0 - Ubuntu 18.04 64-bit}}
<syntaxhighlight lang="asm"> # Author: Ettore Forigo - Hexwell
 
.intel_syntax noprefix
Line 6,943 ⟶ 6,794:
ret # return 0</syntaxhighlight>
Usage:
<syntaxhighlight lang="bash">$ gcc caesar.S -o caesar
$ ./caesar 10 abc
klm
$ ./caesar 16 klm
abc</syntaxhighlight>
 
=={{header|XBasic}}==
{{trans|Modula-2}}
{{works with|Windows XBasic}}
<syntaxhighlight lang="xbasic">
PROGRAM "caesarcipher"
VERSION "0.0001"
Line 7,016 ⟶ 6,866:
Decrypted: The five boxing wizards jump quickly
</pre>
 
=={{header|XBS}}==
<syntaxhighlight lang="xbs">set letters="ABCDEFGHIJKLMNOPQRSTUVWXYZ"::split();
 
func caesar(text,shift:number=1){
Line 7,060 ⟶ 6,909:
Hi
</pre>
 
=={{header|XLISP}}==
<syntaxhighlight lang="lisp">(defun caesar-encode (text key)
(defun encode (ascii-code)
(defun rotate (character alphabet)
Line 7,079 ⟶ 6,927:
(caesar-encode text (- 26 key)))</syntaxhighlight>
Test it in a REPL:
<syntaxhighlight 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,088 ⟶ 6,936:
 
"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."</syntaxhighlight>
 
=={{header|XPL0}}==
To decrypt a message use the negative value of the encrypting key.
Usage: caesar key <infile.txt >outfile.xxx
 
<syntaxhighlight lang=XPL0"xpl0">code ChIn=7, ChOut=8, IntIn=10;
int Key, C;
[Key:= IntIn(8);
Line 7,111 ⟶ 6,958:
SDFN PB ERA ZLWK ILYH GRCHQ OLTXRU MXJV.
</pre>
 
=={{header|Yabasic}}==
<syntaxhighlight lang=Yabasic"yabasic">
REM *** By changing the key and pattern, an encryption system that is difficult to break can be achieved. ***
 
Line 7,155 ⟶ 7,001:
 
You are encouraged to solve this task according to the task description, using any language you may know.</pre>
 
=={{header|zkl}}==
<syntaxhighlight 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,164 ⟶ 7,009:
str.translate(letters,ltrs)
}</syntaxhighlight>
<syntaxhighlight lang="zkl">text:="The five boxing wizards jump quickly";
N:=3;
code:=caesarCodec(text,N);
Line 7,176 ⟶ 7,021:
decoded = The five boxing wizards jump quickly
</pre>
 
=={{header|zonnon}}==
<syntaxhighlight lang="zonnon">
module Caesar;
const
Line 7,243 ⟶ 7,087:
The five boxing wizards jump quickly -c-> RFC DGTC ZMVGLE UGXYPBQ HSKN OSGAIJW -d-> THE FIVE BOXING WIZARDS JUMP QUICKLY
</pre>
 
=={{header|ZX Spectrum Basic}}==
{{trans|BBC BASIC}}
<syntaxhighlight lang="zxbasic">10 LET t$="PACK MY BOX WITH FIVE DOZEN LIQUOR JUGS"
20 PRINT t$''
30 LET key=RND*25+1
Line 7,261 ⟶ 7,104:
</syntaxhighlight>
{{trans|Yabasic}}
<syntaxhighlight 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
10,333

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.