rudimuc3k downloadsEncoding and decoding text using Base64, ROT13 and Atbash ciphers.
This is a plugin for Obsidian to encode / decode texts.
Currently supported algorithms are:
From Obsidian v0.9.8, you can activate this plugin within Obsidian by doing the following:
Following conversions are available
| Source | Destination | Markdown keyword |
|---|---|---|
| text | base16 | transform-text-base16 |
| base16 | text | transform-base16-text |
| text | base64 | transform-text-base64 |
| base64 | text | transform-base64-text |
| text | base85 | transform-text-base85 |
| base85 | text | transform-base85-text |
| text | ROT13 | transform-text-rot13 |
| ROT13 | text | transform-rot13-text |
| text | atbash | transform-text-atbash |
| atbash | text | transform-atbash-text |
Type the Markdown keyword to use the specific encoding.
For example if you like to print out a given text as base64 you have to write:
```transform-text-base64
this is a text to encode
```
The result will be this:
dGhpcyBpcyBhIHRleHQgdG8gZW5jb2Rl
Upcoming changes for this plugin: