Search found 1302 matches

by hidnplayr
Sat Aug 28, 2021 5:54 pm
Forum: Network
Topic: Atheros L2
Replies: 19
Views: 29939

Re: Atheros L2

Yes, Attansic seems to have been bought by Atheros which seems to have been bought by Qualcomm.
But I don't care about the brand name when making a driver, more about the architecture of the chip ;)

Anyway, it seems architecturally different enough to put in a separate driver.
by hidnplayr
Sat Aug 28, 2021 12:44 pm
Forum: Network
Topic: Atheros L2
Replies: 19
Views: 29939

Re: Atheros L2

Coldy wrote:hidnplayr, no. here info from windows device manager - pci\ven_1969&dev_2048...
It seems I made a typing error :) 1969:2048 it is indeed.
Anyway, I asked to check if it is possible to add support in AR81XX driver, but it's not so easy for this device, sorry.
by hidnplayr
Wed Aug 25, 2021 12:18 am
Forum: Kernel
Topic: CSRNG
Replies: 6
Views: 8842

Re: CSRNG

Of course, there is no such thing as a free meal. If we want to have great random numbers, they must be paid in CPU time. The idea is to collect entropy at the following places: - At set_keyboard_data in keyboard.inc (current hpet/rdtsc timer value (least significant bits) and scancode on keyboard e...
by hidnplayr
Tue Aug 24, 2021 8:53 am
Forum: Kernel
Topic: CSRNG
Replies: 6
Views: 8842

Re: CSRNG

Doczom: I am talking already about the next level ;)
by hidnplayr
Mon Aug 23, 2021 10:51 pm
Forum: Kernel
Topic: CSRNG
Replies: 6
Views: 8842

CSRNG

Recently, some developments have been made in the field of (network level) encryption support (TLS, SSH). Therefore, the need for a CSRNG (Cryptographically Secure Random Number Generator) has arisen. According to the literature I have seen, the only sensible way is to place it inside the kernel, wh...
by hidnplayr
Mon Aug 23, 2021 9:42 pm
Forum: Network
Topic: Работа с сетью
Replies: 35
Views: 40702

Re: Работа с сетью

punk_joker wrote:Не определяется сетевуха в последней ночной сборке: Ethernet controller: Atheros Communications Inc. AR8151 v2.0 Gigabit Ethernet (rev c0)
Do you still have it? It can be made to work with latest AR81xx driver but have been unable to test.
by hidnplayr
Mon Aug 23, 2021 9:38 pm
Forum: Network
Topic: Atheros L2
Replies: 19
Views: 29939

Re: Atheros L2

Coldy: Do I understand correctly that you have a card with PCI ID 1069:2048 ?
by hidnplayr
Mon Aug 23, 2021 9:09 pm
Forum: Network
Topic: Atheros AR8161/8165
Replies: 16
Views: 25739

Re: Atheros AR8161/8165

Doczom The driver has been updated in #9146 and should work also for you now.
For "username and password from the provider", we still do not have support.
by hidnplayr
Wed Aug 04, 2021 1:17 pm
Forum: Network
Topic: SSH client
Replies: 21
Views: 20306

Re: SSH client

V0.6: Added support for file '/sys/configuration/known_host.ini' to store remote host keys, that will be verified during connection. V0.7: Added support for RSA with SHA2-256 host authentication V0.8: Added support for RSA with SHA2-512 host authentication It looks great. I will necessarily test whe...
by hidnplayr
Mon Aug 02, 2021 9:45 pm
Forum: Network
Topic: SSH client
Replies: 21
Views: 20306

Re: SSH client

Version 0.05 #9106. Quite useable.
(Requires latest revision of console.obj)
by hidnplayr
Mon Aug 02, 2021 9:19 pm
Forum: Application libraries
Topic: Библиотека console.obj - работа с консолью
Replies: 23
Views: 32133

Re: Библиотека console.obj - работа с консолью

Работаю над поддержкой кодировок в Delphi, и обнаружил, что шрифт, встроенный в console.obj, реализует набор символов, соответствующий альтернативной модифицированной кодировке ГОСТ, популярной в DOS. Она отличается от CP866. Это баг или фича? According to English wikipedia page on CP866, it is an ...
by hidnplayr
Mon Aug 02, 2021 9:14 pm
Forum: Application libraries
Topic: Библиотека console.obj - работа с консолью
Replies: 23
Views: 32133

Re: Библиотека console.obj - работа с консолью

SoUrcerer wrote:В обработке escape-последовательности перемещения курсора в console.obj ошибка, перепутаны cols и rows. Полтора часа бился над проблемой, пока не проверил работу escape-ов.
It was true. Forgot to mention in commit info, but fixed in #9105.
by hidnplayr
Mon Jul 26, 2021 12:28 am
Forum: Network
Topic: IRC client
Replies: 26
Views: 21366

Re: IRC client

Not quite finished yet, but that is why they call it a teaser :lol:
by hidnplayr
Sat Jul 24, 2021 5:11 pm
Forum: Network
Topic: SSL: Mbed TLS (polarSSL)
Replies: 22
Views: 21340

Re: SSL: Mbed TLS (polarSSL)

Rewritten example program in FASM as proof of concept. Works! TODO : Translate all .h files for library to .inc files for fasm, or at least correct the sizes in mbedtls.inc Get certificates working. Without it, half the concept of TLS/SSL is broken. ... Use it in practical applications (HTTP library...
by hidnplayr
Wed Jul 21, 2021 11:29 am
Forum: Network
Topic: SSH client
Replies: 21
Views: 20306

Re: SSH client

Dunkaist: It is quite the question! I'll try to give a sensible answer without boring all possible readers :) Actually, when I started working on KolibriOS project, I just wanted to write some network programs. Soon I got frustrated with the capabilities of the then current network stack and starte...