Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brandonmfong/viginere-cipher
Demonstration of Viginere and Subsitution cipher in golang
https://github.com/brandonmfong/viginere-cipher
Last synced: about 1 month ago
JSON representation
Demonstration of Viginere and Subsitution cipher in golang
- Host: GitHub
- URL: https://github.com/brandonmfong/viginere-cipher
- Owner: BrandonMFong
- Created: 2021-02-11T02:25:49.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-25T03:56:22.000Z (almost 4 years ago)
- Last Synced: 2023-03-10T10:48:21.950Z (almost 2 years ago)
- Language: Go
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Golang Cryptography
## How to run Golang code in Visual Code
* Install the [Go for VS Code](https://github.com/golang/vscode-go/blob/master/README.md) extension
* In settings.json add the following:
```
"go.testEnvFile": "C:\\Go\\"
```
* Also make sure to add Go to your environment variables## How to build Golang code
```
go build
```## 1026 - Substitution Cipher
## 1027 - Vigenere Cipher