https://github.com/adelmofilho/tenispolar
Implementation ZENIT-POLAR substitution cipher method of encryption
https://github.com/adelmofilho/tenispolar
cryptography r-package r-programming
Last synced: about 1 year ago
JSON representation
Implementation ZENIT-POLAR substitution cipher method of encryption
- Host: GitHub
- URL: https://github.com/adelmofilho/tenispolar
- Owner: adelmofilho
- License: gpl-3.0
- Created: 2019-03-05T18:32:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-11T22:24:52.000Z (about 7 years ago)
- Last Synced: 2025-03-01T04:39:08.706Z (over 1 year ago)
- Topics: cryptography, r-package, r-programming
- Language: R
- Homepage: https://blog.adelmofilho.com/tenispolaR/
- Size: 78.1 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# tenispolaR 
[](https://cran.r-project.org/package=tenispolaR)
[](https://www.tidyverse.org/lifecycle/#stable)
[](https://travis-ci.org/adelmofilho/tenispolaR)
[](https://codecov.io/github/adelmofilho/tenispolaR?branch=master)
[](https://ci.appveyor.com/project/adelmofilho/tenispolaR)
[](https://zenodo.org/badge/latestdoi/173999877)
## Background
This package is a tribute to the 35 years of the publication of the collection of books "Os Karas" by the Brazilian author Pedro Bandeira.
## Description
Implementation ZENIT-POLAR substitution cipher method of encryption (GC&CS, 1944).
## Installation
You can install this package from CRAN:
``` r
install.packages("tenispolaR")
```
Or you can install the development version from Github with devtools:
``` r
devtools::install_github("adelmofilho/tenispolaR")
```
## Example
This is a basic example which shows ZENIT-POLAR substitution cipher method of encryption.
```r
x <- "orro o um psibinhe tisi er kisir: e ivorre der ceseir, e celpsisae der cisopir!"
tenispolaR::encryption(x, key_from = "polar", key_to = "tenis")
```
```
## [1] "esse e um trabalho para os karas: o avesso dos coroas, o contrario dos caretas!"
```