Oleg Yukhnevich
Oleg Yukhnevich
Fixed in [Dokka 2.0.0](https://github.com/Kotlin/dokka/releases/tag/v2.0.0) in [Dokka Gradle plugin v2](https://kotlinlang.org/docs/dokka-migration.html) by providing type-safe Gradle DSL for HTML plugin
Hey! OpenSSL provider is [currently supported](https://whyoleg.github.io/cryptography-kotlin/providers/) only for native targets. Do you have any problems when using JDK provider on Android?
> in order to make sure they are correctly generated despite platform. :) > Thus having same test vectors to verify data. Yeah, I get the idea. And specifically for...
Sorry for the delay. Have you called those in `jvmMain` (or `androidMain`) source sets? It works fine at my side.
[0.5.0](https://github.com/whyoleg/cryptography-kotlin/releases/tag/0.5.0) introduces [optimal](https://whyoleg.github.io/cryptography-kotlin/providers/#optimal-provider) provider which simplifies provider dependency manangement. Hope this helps :)
With the implementation of DGPv2, new integration tests were added, including ones that compare HTML output (#3821). If needed, new tests might be added using the same technique.
Real-world cases: * kotlinx.serialization - [links to parameters](https://github.com/Kotlin/kotlinx.serialization/blob/71b5d5ee99f953b60756c4aaa2ac8e12c3fae605/core/commonMain/src/kotlinx/serialization/encoding/Encoding.kt#L407C33-L407C40), when documentation is copied to the inheritor ([AbstractEncoder](https://github.com/Kotlin/kotlinx.serialization/blob/71b5d5ee99f953b60756c4aaa2ac8e12c3fae605/core/commonMain/src/kotlinx/serialization/encoding/AbstractEncoder.kt#L65)) leads to `CompositeEncoder.encodeStringElement` in K2 (`AbstractEncoder.encodeStringElement` in K1) * kotlinx.io - same, [links to...
Hey! Thanks for raising the issue. That's true, at this moment, there is no API directly, but it's possible to do it using `cryptography-serialization-asn1-modules` dependency models. E.g.: ```kotlin fun createRsaPublicKey(...
Should not be an issue in [Dokka 2.0.0](https://github.com/Kotlin/dokka/releases/tag/v2.0.0) in [Dokka Gradle plugin v2](https://kotlinlang.org/docs/dokka-migration.html) with reworked [aggregation setup](https://kotlinlang.org/docs/dokka-migration.html#update-documentation-aggregation-in-multi-module-projects)
I do think that for kotlinx-io real and simple solution for now would be to just extract FS support to separate module, and so this module will provide FS for...