Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 727 Bytes

File metadata and controls

23 lines (12 loc) · 727 Bytes

caesar-cipher 🔐

A description of the classic caesar cipher with pseudo code in english and french including it's implementation in various common programming languages.

C implementation

The C implementation of this cipher was made using the gcc compiler compatible with the c23 standard.

C++ implementation

The C++ implementation of this cipher was made using the g++ compiler compatible with the c23 standard.

#Java implementation

The Java implementation of this cipher was made using Java SE 23 and JDK 23.

#Javascript implementation

The Javascript implementation of this cipher was made using Javascript ES6 and nodeJS.

PHP implementation

The PHP implementation of this cipher was made using php8.4