Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

create Rot13.go #114

Open
wants to merge 1 commit into
base: master
from
Open

Conversation

@aakashdinkar
Copy link

@aakashdinkar aakashdinkar commented Mar 21, 2020

No description provided.

Copy link
Collaborator

@brayo-pip brayo-pip left a comment

I haven't even read the rest of the code, but its decrypt and not dencrypt... fix that first

Copy link
Collaborator

@brayo-pip brayo-pip left a comment

Fix some typos

import "fmt"


func dencrypt(str string, key int)string{

This comment has been minimized.

@brayo-pip

brayo-pip Jul 6, 2020
Collaborator

fix typos

Suggested change
func dencrypt(str string, key int)string{
func denrypt(str string, key int)string{
fmt.Print("Enter your Message:")
var str string
fmt.Scan(&str)
str_d := dencrypt(str,13)

This comment has been minimized.

@brayo-pip

brayo-pip Jul 6, 2020
Collaborator

Suggested change
str_d := dencrypt(str,13)
str_d := decrypt(str,13)
fmt.Scan(&str)
str_d := dencrypt(str,13)
fmt.Println("Decryption using key => 13 is :",str_d)
str_e := dencrypt(str_d,13)

This comment has been minimized.

@brayo-pip

brayo-pip Jul 6, 2020
Collaborator

Suggested change
str_e := dencrypt(str_d,13)
str_e := decrypt(str_d,13)
@aakashdinkar aakashdinkar requested a review from vedantmamgain as a code owner Oct 17, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked issues

Successfully merging this pull request may close these issues.

None yet

2 participants
You can’t perform that action at this time.