Skip to content

smeEed/smeedish-OLD

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 

Repository files navigation

Smeedish

Smeedish is a fictional ancient encryption method designed for secure encryption (by 1600s standards) that can be applied to almost any language.

This repository provides tools for encrypting raw text into cipher text (also known as 'smeedish'). Currently, it only supports languages that are read from left to right, with testing primarily conducted on English.

The algorithm for encryption is straightforward. No private exchange of keys is necessary—possession of the tool is sufficient for end-to-end encryption.

Encryption Algorithm

The Smeedish encryption algorithm is designed to be simple yet effective. Here’s a breakdown of the encryption process:

Steps for Encryption:

  1. Single-Word Input: If the input consists of only one word, the standard rules for spacing and character removal can be omitted. You can directly encrypt the single word.

  2. Multi-Word Input: For text containing two or more words, follow these standard encryption rules:

    • Remove Non-Lowercase Letters: Filter the input text to keep only lowercase letters (a-z).
    • Strip Whitespace: Remove all but one whitespace between words.
    • Random Character Insertion: Introduce random characters into the text at random intervals to increase complexity. These characters do not replace any letters and do not shift the position of the existing letters; they are simply added to confuse potential decoders.
    • Output the Cipher Text: The resulting string is your encrypted text, or the original text in "smeedish".

Example of the Encryption Process:

Single-Word Example:

  1. Original Text: hello
  2. Encrypted Text: (e.g., h3E#lL2o)

Multi-Word Example:

  1. Original Text: hello world
  2. After applying rules:
    • Remove non-lowercase letters: hello world
    • Strip whitespace: hello world
    • Insert random characters: h2e@ll#o w4o#rld
    • Transform (example): h3e#lLl2 ow4O#rL d6

Encrypted Text: h3E#lL2 ow4O#rL d6

Note: The specific transformation rules and character insertion methods can be customized as needed.

Usage

To start using SMeedish in the programming language of your choice, use one of our SDKs here: https://github.com/christickner/smeedish-sdks.git

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages