Oleg Yukhnevich

Results 285 comments of Oleg Yukhnevich

Hey! Sorry, but RSA with PKCS1 encryption is not yet supported. Only RSA OAEP is supported for now. Could you please describe why do you need this specific algorithm? Is...

Yeah, if you control server part and so could use RSA OAEP for your use case - then it's better to do it. RSA with PKCS1 encryption probable will be...

AES.ECB, RSA.RAW (jdk: RSA/ECB/NoPadding) and RSA.PKCS1 encryption (RSA/ECB/PKCS1Padding) are available in `main` branch and so in 0.4.0 snapshots. No date for release yet as I need to finish other things....

[0.4.0 was just released!](https://github.com/whyoleg/cryptography-kotlin/releases/tag/0.4.0) RSA encryption with [PKCS1 padding](https://whyoleg.github.io/cryptography-kotlin/api/cryptography-core/dev.whyoleg.cryptography.algorithms/-r-s-a/-p-k-c-s1/-private-key/index.html) and [without padding](https://whyoleg.github.io/cryptography-kotlin/api/cryptography-core/dev.whyoleg.cryptography.algorithms/-r-s-a/-r-a-w/index.html) are available now.

Hey, thanks for the report, could you please describe a little bit more on when you receive such error? Is it happens during running some gradle task? Or is it...

Preliminary API design: https://github.com/whyoleg/cryptography-kotlin/commit/04310269d99998b66d6b3d7857ed23ae3d5ee0f4 Note: some parts of API will be marked as `experimental`. In long term, when `kotlinx-io` will become stable, some of the existing declarations could be dropped....

[0.4.0 was just released!](https://github.com/whyoleg/cryptography-kotlin/releases/tag/0.4.0) Feel free to check API available, e.g for [streaming encryption](https://whyoleg.github.io/cryptography-kotlin/api/cryptography-core/dev.whyoleg.cryptography.operations/-encryptor/index.html) or [hashing](https://whyoleg.github.io/cryptography-kotlin/api/cryptography-core/dev.whyoleg.cryptography.operations/-hash-function/index.html)

Hey! BOM is JVM-only thing, so I would not expect it to work properly for `commonMain`. Or may be you have an example of working BOM in KMP projects? I...

@ngallazzi may be you know any `example of working BOM in KMP projects`? So I could investigate support for BOM outside of JVM?

Okay, I've rechecked with the sample project from https://kmp.jetbrains.com and BOM is working fine with KMP. So `cryptography-bom` works as expected. Though, the error comes from different place - looks...