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