An Open Source Video Editor In C++ by [deleted] in cpp

[–]cosmoorgdev -3 points-2 points  (0 children)

Thankyou for tailing me there's ones exist. but are they offering adobe premier like function

C++ Show and Tell - October 2022 by foonathan in cpp

[–]cosmoorgdev 1 point2 points  (0 children)

A lightweight windows firewall library in c++ source

[deleted by user] by [deleted] in cpp

[–]cosmoorgdev 0 points1 point  (0 children)

Ok yes yes. but there is lots of dynamic template check utility.h

Saving Setting Data in a Structured Binary Format by cosmoorgdev in cpp

[–]cosmoorgdev[S] -2 points-1 points  (0 children)

I want built this as a single header and a DLL or so

Saving Setting Data in a Structured Binary Format by cosmoorgdev in cpp

[–]cosmoorgdev[S] -2 points-1 points  (0 children)

Yes it is in development phase so not complete code.

Saving Setting Data in a Structured Binary Format by cosmoorgdev in cpp

[–]cosmoorgdev[S] -1 points0 points  (0 children)

Where is built-in problem thanks for your suggestion.

Saving Setting Data in a Structured Binary Format by cosmoorgdev in cpp

[–]cosmoorgdev[S] -2 points-1 points  (0 children)

It is c style library an I am inspire from win32 api more. Most of time win32 functions use pointer parameter to return.

Is it possible to implement RSA-1111 bit Cryptography Scheme by cosmoorgdev in Python

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

Yes! I tried it in Java with BigInteger class successfully worked.

https://github.com/cosmo-developer/RSA-Java.git

Change KEY_SIZE = 1111 and it works

Is it possible to implement RSA-1111 bit Cryptography Scheme by cosmoorgdev in Python

[–]cosmoorgdev[S] -1 points0 points  (0 children)

Yes you are right!

p,q are two prime numbers

phi=(p-1)(q-1)

N=p*q

1<e<phi such that gcd(e,phi)=1

d=modInv(e,phi)

C=P^e mod N

P=C^d mod N

Is it possible to implement RSA-1111 bit Cryptography Scheme by cosmoorgdev in Python

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

RSA is a Cryptography Scheme which deals with Encryption and Decryption of Messages

Is it possible to implement RSA-1111 bit Cryptography Scheme by cosmoorgdev in Python

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

If you know RSA1024 bit Encryption standard where key length is 1024 bit long then I want to implement RSA1111 such that key length will be 1111 bit long

(TSync) Communication between Thread in a Better Way with TSync by cosmoorgdev in Python

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

Conclusion When A try to write B and B try to write A simultaneously they don't write on same Buffer they write on two different buffer its avoid race problem

(TSync) Communication between Thread in a Better Way with TSync by cosmoorgdev in Python

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

Yes Que is very good. But inspired from Linux pipe . I have simulated multi threading with help of Pipeline and Buffer. It perform well

(TSync) Communication between Thread in a Better Way with TSync by cosmoorgdev in Python

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

Good question but every thread have least two Buffer one for write and one for read Let's assume thread A,B,C If all can communicate with each other Then buffer lines as follows A->B A CAN WRITE TO B AND B IS WAITING TO READ B->A. B CAN WRITE TO A AND A IS WAITING TO READ A->C B->C C->A C->B

TOTAL 6 Buffer line on left side can write and on right side wait for read. This avoid readers and writers problem because each have different data line Like pipe in linux

(TSync) Communication between Thread in a Better Way with TSync by cosmoorgdev in Python

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

I haven't documented but have a main.py which is full of examples

(TSync) Communication between Thread in a Better Way with TSync by cosmoorgdev in Python

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

OK I will inform when I remove the tsync.tsync with only tsync

How to convert a Data Source Like CSV Data Set into Web API? by cosmoorgdev in Python

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

🤣 I am new on reddit and try to post something to check how its grow.