Ask Your Question
0

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

asked 2020-12-22 09:38:06 +0200

koroz91 gravatar image

updated 2020-12-22 09:39:01 +0200

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

thanks

edit retag flag offensive close merge delete

Comments

1

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

slelievre gravatar imageslelievre ( 2020-12-22 10:02:32 +0200 )edit

This is a follow-up from

slelievre gravatar imageslelievre ( 2020-12-22 10:10:44 +0200 )edit

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

koroz91 gravatar imagekoroz91 ( 2020-12-22 10:23:56 +0200 )edit

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

slelievre gravatar imageslelievre ( 2020-12-23 00:57:55 +0200 )edit

Inverse of what? Multiply what with what?

slelievre gravatar imageslelievre ( 2020-12-26 15:13:09 +0200 )edit

1 Answer

Sort by ยป oldest newest most voted
0

answered 2020-12-25 18:52:23 +0200

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
edit flag offensive delete link more

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: 2020-12-22 09:38:06 +0200

Seen: 354 times

Last updated: Dec 25 '20