Skip to content

uchkw/GF256

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GF256

Manipulation module for Galois Field over $2^8$

julia> a = GF(2)
GF(2)

julia> b = GF(2)
GF(2)

julia> c = GF(3)
GF(3)

julia> a == b
true

julia> a == c
false

julia> bvec(c)
8-element Array{Int64,1}:
 1
 1
 0
 0
 0
 0
 0
 0

julia>  a + c
GF(1)

julia>  c + c
GF(0)

julia>  log(c)
25

julia> a * a
GF(4)

julia> c ^ 5
GF(51)

julia> inv(c)
GF(244)

julia> c * GF(244)
GF(1)

About

Julia module for GF(256) operations

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages