Go to file
Yawning Angel 7bed317636 core/crypto: Add chacha20
This package implements the ChaCha20 stream cipher as specified in
RFC 8439, and the somewhat non-standard XChaCha20 variant that supports
a 192-bit nonce.

While an IETF draft for XChaCha20 standardization exists,
implementations that pre-date the draft use a 64-bit counter, instead of
the IETF-style 32-bit one.  This implementation opts for the latter as
compatibility with libsodium is more important than compatibility with
an expired IETF draft.
2021-11-17 13:59:53 +00:00
2021-11-10 15:31:29 +01:00
2021-09-11 17:06:29 +01:00
2021-08-08 11:29:56 +02:00
2021-11-17 13:59:53 +00:00
2021-11-07 14:16:05 +00:00
2018-12-27 10:51:15 +00:00
2021-11-17 11:02:11 +00:00
2021-11-17 13:59:53 +00:00
2020-01-29 12:04:54 +00:00
2021-03-06 20:01:11 -03:00
2021-09-17 12:57:52 +01:00
2021-11-09 22:11:18 +00:00
2020-12-09 18:51:37 -03:00
2021-08-15 12:12:48 +01:00
2021-09-11 17:06:29 +01:00
2020-11-03 07:40:17 -03:00
2021-10-02 13:26:33 +03:00

Odin logo
The Data-Oriented Language for Sane Software Development.


The Odin Programming Language

Odin is a general-purpose programming language with distinct typing, built for high performance, modern systems, and built-in data-oriented data types. The Odin Programming Language, the C alternative for the joy of programming.

Website: https://odin-lang.org/

package main

import "core:fmt"

main :: proc() {
	program := "+ + * 😃 - /"
	accumulator := 0

	for token in program {
		switch token {
		case '+': accumulator += 1
		case '-': accumulator -= 1
		case '*': accumulator *= 2
		case '/': accumulator /= 2
		case '😃': accumulator *= accumulator
		case: // Ignore everything else
		}
	}

	fmt.printf("The program \"%s\" calculates the value %d\n",
	           program, accumulator)
}

Documentation

Getting Started

Instructions for downloading and installing the Odin compiler and libraries.

Learning Odin

Overview of Odin

An overview of the Odin programming language.

Frequently Asked Questions (FAQ)

Answers to common questions about Odin.

The Odin Wiki

A wiki maintained by the Odin community.

Odin Discord

Get live support and talk with other odiners on the Odin Discord.

References

Language Specification

The official Odin Language specification.

Articles

The Odin Blog

The official blog of the Odin programming language, featuring announcements, news, and in-depth articles by the Odin team and guests.

Warnings

  • The Odin compiler is still in development.
Languages
Odin 76.7%
C++ 14.9%
C 7.8%
Python 0.3%
JavaScript 0.2%