Skip to content

ellifteria/SimpleRSA.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Julia Simple RSA Implementation

Usage

In the Julia REPL:

julia> include("src/TxtbkRSA.jl")
julia> using .TxtbkRSA
julia> priv, pub = generate_keys()
julia> encrypted = encrypt("Hello, World!", pub)
julia> decrypted = decrypt(encrypted, priv)
julia> println(decrypted)

Output:

Hello, World!

About

Simple textbook RSA implementation in Julia.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages