Ask Your Question
0

how i can Computing inverse GF(2^8) and Multiplication

asked 4 years ago

koroz91 gravatar image

updated 4 years ago

how i can Computing inverse GF(2^8) and Multiplication whith matrix 8 by 8 and sum whith matirx 8 by 1

thanks

Preview: (hide)

Comments

1

Please add an example of a computation you want to do with Sage.

slelievre gravatar imageslelievre ( 4 years ago )

This is a follow-up from

slelievre gravatar imageslelievre ( 4 years ago )

i can't computing inverse GF(2^8) and Multiplication whith matrix 8 by 8

koroz91 gravatar imagekoroz91 ( 4 years ago )

Also, don't hesitate to write in any language that feels more comfortable to you than English.

slelievre gravatar imageslelievre ( 4 years ago )

Inverse of what? Multiply what with what?

slelievre gravatar imageslelievre ( 4 years ago )

1 Answer

Sort by » oldest newest most voted
0

answered 4 years ago

slelievre gravatar image

Not completely sure what the question is.

To compute an inverse in GF(2^8) one can compute one over something.

Do these examples help?

sage: F.<a> = GF(2^8)
sage: b, c = a^8, a^15
sage: b, c
(a^4 + a^3 + a^2 + 1, a^5 + a^2 + a)
sage: d = c / b
sage: d
a^7
sage: aa = 1/a
sage: aa
a^7 + a^3 + a^2 + a
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 4 years ago

Seen: 549 times

Last updated: Dec 25 '20