Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vodolaz095/caesar
Caesar's encryption implementation for Go
https://github.com/vodolaz095/caesar
Last synced: about 4 hours ago
JSON representation
Caesar's encryption implementation for Go
- Host: GitHub
- URL: https://github.com/vodolaz095/caesar
- Owner: vodolaz095
- License: mit
- Created: 2017-01-23T12:20:17.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-23T12:22:06.000Z (almost 8 years ago)
- Last Synced: 2024-06-20T02:07:20.884Z (5 months ago)
- Language: Go
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Caesar
========================
[Caesar's Cipher implementation](https://en.wikipedia.org/wiki/Caesar_cipher) for GoIt is not considered cryptographicaly strong algorithm!
See also [ROT13](https://ru.wikipedia.org/wiki/ROT13) algorithmРусский
========================
Реализация алгоритма [шифрования Цезаря](https://ru.wikipedia.org/wiki/%D0%A8%D0%B8%D1%84%D1%80_%D0%A6%D0%B5%D0%B7%D0%B0%D1%80%D1%8F) для языка Go.Данный алгоритм не является надёжным!
См. также алгоритм [ROT13](https://ru.wikipedia.org/wiki/ROT13)Badges / Значки
========================
[![Build Status](https://travis-ci.org/vodolaz095/vdlog.png?branch=master)](https://travis-ci.org/vodolaz095/caesar)
[![GoDoc](https://godoc.org/github.com/vodolaz095/vdlog?status.svg)](https://godoc.org/github.com/vodolaz095/caesar)
[![Go Report Card](https://goreportcard.com/badge/github.com/vodolaz095/caesar)](https://goreportcard.com/report/github.com/vodolaz095/caesar)Example / Пример
========================```go
package main
import (
"fmt""github.com/vodolaz095/caesar"
)func main() {
cryptor := caesar.NewRussian()
fmt.Println(cryptor.Decrypt("ИЫЛРУДХРТ", 8)) // => Будильник
}```