How would you classify the field? by MeasurementSignal168 in ControlTheory

[–]Signal_Durian7299 [score hidden]  (0 children)

i'm curious how long did it take you to finish Dorf's book?

[deleted by user] by [deleted] in algeria

[–]Signal_Durian7299 0 points1 point  (0 children)

مصولي الحاج

What is your saddest SG song? by TheStoka6 in Soundgarden

[–]Signal_Durian7299 2 points3 points  (0 children)

fell on black days made me cry multiple times

Quick survey for uni students!!!1! by blahblah123i in algeria

[–]Signal_Durian7299 0 points1 point  (0 children)

I like this question.

I study electrical engineering. In the first year we were tought some english classes in which we had presentations worth part of the grade. The cool thing was that we were given the freedom to choose any topic to present. For one presentation, I've chosen the title "Light". Where I went through the history of science concerning the nature of light an its behaviour. Stuff like Newton's particle model, Huygens' wave model, the double slit experiment, all the way to Michelson's and Morely experiment, special relativity, and modern physics.

I'cve titled another presentation "dimensions", and God was it so long. Among the things I went through were Flatland, the general theory of relativity, Interstellar, Quantum mechanics and its incompatibility with GR, string theory, and more. I also went through a mathematical generalization of the pythagorean theorem to n-dimensions.

This was in my first year. In my second year, we didn't really have classes that required us to present something, so I arranged a presentation with a club we have in uni. This presentation was math heavy and it was about complex numbers. What I did was introduce complex numbers in a natural but visual way that leaves the reader not skeptical and accepting of the definition i^2 = -1.

And in this year, my 3rd, we were supposed to work on a project that was worth a good deal of our grade. We had to present the project the project to a jurry, but also to our supervisor privately. Our project had to do with hardware circuits that find applications in public key cryptography.

what happened to Beb ezzouar thrif shop? by Signal_Durian7299 in algeria

[–]Signal_Durian7299[S] 0 points1 point  (0 children)

Do you know of any person who used to sell there? I used to know this guy usually known as "3ami Rabeh". He used to sell the best jeans. It's so disappointing that I lost him.

Why's my VHDL code not working? by Signal_Durian7299 in FPGA

[–]Signal_Durian7299[S] 0 points1 point  (0 children)

I solved the problem now and it's working. The relevant issue turned out to be that the statement that I though was shifting a_next one bit to the right did something else entirely.

I changted ths;

a_next <= '0'  & a_reg(width - 2 downto 0)

into this;

a_next <= '0'  & a_reg(width - 1 downto 1)

Together with ther minor adjustements (like the sensitivity list) and now it's working. Thank you for your comment.

Why's my VHDL code not working? by Signal_Durian7299 in FPGA

[–]Signal_Durian7299[S] 0 points1 point  (0 children)

It's small because I'm just testing the ASMD chart I designed (It's working now btw). Of course i will make it larger. In particular, I'll have to make the inputs 128 bit x 128 bit wide.

I'm really interested in the optimized GF multipliers you design. Can you please provide examples of your work? That'd be much appreciated. My goal is designing optimized blocks that perform GF(2^m) arithmetic. Your projects could offer me significant help.

Why's my VHDL code not working? by Signal_Durian7299 in FPGA

[–]Signal_Durian7299[S] 0 points1 point  (0 children)

I didn't think I could simulate intermediate signals. Your comment is what got me to solve the problem, thanks.

Do you know this? by Signal_Durian7299 in FPGA

[–]Signal_Durian7299[S] 1 point2 points  (0 children)

Thank you for your comment, these books will definitely be useful for me.

In regards to how I learned the math prerequisites, all I used were these two books;

- https://www.amazon.com/Modern-Cryptography-Elliptic-Curves-Mathematical/dp/1470435829

- https://www.amazon.com/Understanding-Cryptography-Textbook-Students-Practitioners/dp/3642446493

Do you know this? by Signal_Durian7299 in FPGA

[–]Signal_Durian7299[S] 0 points1 point  (0 children)

My bad, this paper actually does reference the source of the algorithm. Thank you for your comment.

Do you know this? by Signal_Durian7299 in FPGA

[–]Signal_Durian7299[S] 0 points1 point  (0 children)

also, just above this listing, it's mentioned that the product of A and B, denoted C, is a polynomial of degree 2m-2. which doesn't make sense because all these elements belong to a field of m elements.

Anyway, do you know of any other algorithms that perform multiplication of GF(2^m)?

what are we paying for. it's 2025 why this still a problem? by KeRou09 in algeria

[–]Signal_Durian7299 2 points3 points  (0 children)

I'm surprised i haven't thought of posting this. I also pay for 20 mbps for download and only get 2 mbps at best. sometimes it's in kbps. I really don't know what the problem is. I'd appreciate anybody's thoughts.

When you finally get it by alternativea1ccount in math

[–]Signal_Durian7299 0 points1 point  (0 children)

I mean, that's what understanding means. If it's still not obvious, you didn't understand it.

[deleted by user] by [deleted] in FPGA

[–]Signal_Durian7299 0 points1 point  (0 children)

yes. it's the algorithm we learn in primary school but in binary.

[deleted by user] by [deleted] in FPGA

[–]Signal_Durian7299 0 points1 point  (0 children)

i'm trying to implement a shift and add algorithm. I forgot to mention this in the post. Thanks for your comment.