Skip to content

didikprabowo/cryptography

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Tools cryptography[On develop]

How to install

go get -u github.com/didikprabowo/cryptography

Algorithm

Cryptography Vigenere

Cryptography Vigenere is one of many alogirihm cryptography, this algorithm in a way do shift with key. this key be able to suitable you want.

example :

package main

import (
	"fmt"

	"github.com/didikprabowo/cryptography/cvc"
)

func main() {
	c := cvc.New("RAHASIABKSDUSDSDSKDSISMSIISS")
	en := c.Encode("My name is Didik Prabowo")
	de := c.Decode(en)
	fmt.Println(en, de)
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages