Search content
Sort by

Showing 5 of 5 results by sadaf123
Post
Topic
Board Новички
Re: Новички, будьте осторожны! Рекомендации
by
sadaf123
on 29/04/2020, 10:22:15 UTC
У меня такая же проблема была, не знаю что делать.
Post
Topic
Board Русский (Russian)
Re: Биткойнталк умирает?
by
sadaf123
on 29/04/2020, 10:14:28 UTC
Такими темпами, форум может продолжить умирать еще 300 лет...
you never know)
Post
Topic
Board Идеи
Re: Биткоин лотерея!
by
sadaf123
on 29/04/2020, 09:54:55 UTC
Со временем все лотерею перейдут на блокчеин. Криптовалютных лотерей уже как грязи, только честных нет  Sad
We trust)
Post
Topic
Board Политика
Re: Россия
by
sadaf123
on 29/04/2020, 09:48:39 UTC
https://focus.ua/storage/pub/images/2018/0412089_1452277764_1421669939_ff-1.jpg
https://www.youtube.com/watch?v=ckHMtFKB0HE

А почему доллар ещё никто опять не хоронит?
Ведь каждый год, 31 декабря, у руководства совками и главпопами наступает священный РПЦшный ритуал похорон доллара. Grin

Потому что ждем бесплатной раздачи нефти)
Post
Topic
Board Development & Technical Discussion
Re: Blockchain Basic: Understanding Modulo Operation
by
sadaf123
on 29/04/2020, 09:25:23 UTC
So in other words when you multiply two numbers in a set of integers, or group as they are called formally, you just take their product normally and take the modulus of it, order n, assuming the group is Zn.

by definition, yes that is how modular multiplication is defined but in practice it would be very slow to perform it like this since x*y if both are n-bits would become as big as 2n-bits and then division (to find the remainder) is a slow process. instead optimized algorithms such as Montgomery is used.