Skip to content

Noob-programmer155/GOST-Block-Cipher-Implementation-Java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

GOST-Block-Cipher-Implementation-Java

GOST Block Cipher implementation algorithm with java programming language

Requirements

Java 10/11

How to Run

String msg = "I Love Code";
Gost gost = new Gost(null);
String key = gost.generateStringKey();
byte[] encMsg = gost.encrypt(msg,key);
String msgData = gost.decrypt(encMsg,key);
System.out.println(msgData);

About

GOST Block Cipher implementation algorithm with java programming language

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages