rot26-rs 0.1.2

(Joke) no_std Implementation of thr ROT-26 algorithem with a C interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
#include "rot26.h"

int main() {
	const char *hello = "hello!";
	printf("data before: %s\n", hello);
	const char *ciphered = rot26_cipher(hello);
	printf("ciphered: %s\n", ciphered);
	const char *deciphered = rot26_decipher(ciphered);
	printf("deciphered: %s\n", deciphered);
	return 0;
}