Jozef Gajdoš

Results 35 comments of Jozef Gajdoš

It is necessary to use constructor with X509Name. ```cs var oids = new List(){X509Name.SerialNumber,X509Name.UID }; var values = new List() { "1234567890", "123456789123456" }; GeneralName name1 = new GeneralName(GeneralName.DnsName, "bc1.local");...

Hello @[israelaece](https://github.com/israelaece) , smart cards usually provide a PKCS11 interface. An example of how to create a p7s signature using BC and a smart card is here . A similar...

> You can support only new T[constant] statements. Or Span variable= stackalloc T[constant]. Or use `Hlsl` intrinsics eg. `float[] array = Hlsl.AllocConstSizeFloatArray(32);`

@qq1176914912 use the `Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess` class and its instance in the certificate generator `Org.BouncyCastle.X509.X509V3CertificateGenerator`.

Maybe in the first step you don't even need to make a separate window for it. This problem could be solved by exporting the ASN1 structure in a text format...

>what do you mean by "raw tty"? Are you talking about the virtual console, or do you have a real physical Teletype Terminal hooked up to your system? virtual console

locale: ``` LANG=en_US.UTF-8 LC_CTYPE="en_US.UTF-8" LC_NUMERIC="en_US.UTF-8" LC_TIME="en_US.UTF-8" LC_COLLATE="en_US.UTF-8" LC_MONETARY="en_US.UTF-8" LC_MESSAGES="en_US.UTF-8" LC_PAPER="en_US.UTF-8" LC_NAME="en_US.UTF-8" LC_ADDRESS="en_US.UTF-8" LC_TELEPHONE="en_US.UTF-8" LC_MEASUREMENT="en_US.UTF-8" LC_IDENTIFICATION="en_US.UTF-8" LC_ALL= ``` showconsolefont: ![image](https://github.com/spectreconsole/spectre.console/assets/12501763/06ac6867-db2e-4fd0-8add-367978345397) tput colors: ``` 8 ``` When using `NO_COLOR`, the problem did...

Is it not possible to solve at least the display of colors at the Spectre.Console level? Or provide a code snippet, how to use NO_COLOR automatically in C# code?

A large part of BouncyCastle's volume is occupied by data for post-quantum cryptography. Then some data for elliptic curves.

Not, test data is in separate folder https://github.com/bcgit/bc-csharp/tree/master/crypto/test/data and is not included in BouncyCastle.Crypto https://github.com/bcgit/bc-csharp/blob/master/crypto/src/BouncyCastle.Crypto.csproj#L85