Oleg Yukhnevich

Results 285 comments of Oleg Yukhnevich

Okay, I see, thanks! The main thing that worries me is that we already have there two `internal` task properties (for debug purposes): `dokkaConfigurationJsonFile` and `overrideJsonConfig`. And now we add...

Hey! It's a bit hard to understand why it happens, without the PEM file, but I understand that it's not possible to share it :) Still, could you share the...

> Maybe it's something with implementation("dev.whyoleg.cryptography:cryptography-provider-optimal") Yeah, looks like this is an issue inside of `apple` provider, that's why replacing it with `openssl` provider solves the issue. > PEM file...

> For some context, Dokka's output formats don't change very often. I've used a similar sort of direct file comparison testing in Dokkatoo for over a year, and I haven't...

I will take a look in coming days. Probably there could be an issue with conflicting overloads because for AEAD + IV we can have `encrypt(iv, plaintext)` and `encrypt(plaintext, additionalData)`...

Hey @morki! Sorry for the delay, and for bringing some bad news: I've implemented this on my own :) The reason is simple: I needed to fix this, to be...

Hey! ECDH support is planned in the upcoming release, no specific date for now, unfortunately. Access to curve parameters is not planned at this moment, and overall, there are not...

[0.4.0 was just released!](https://github.com/whyoleg/cryptography-kotlin/releases/tag/0.4.0) [PBKDF2](https://whyoleg.github.io/cryptography-kotlin/api/cryptography-core/dev.whyoleg.cryptography.algorithms/-p-b-k-d-f2/index.html), [ECDH](https://whyoleg.github.io/cryptography-kotlin/api/cryptography-core/dev.whyoleg.cryptography.algorithms/-e-c-d-h/index.html) and [HKDF](https://whyoleg.github.io/cryptography-kotlin/api/cryptography-core/dev.whyoleg.cryptography.algorithms/-h-k-d-f/index.html) are now available via [secret derivation](https://whyoleg.github.io/cryptography-kotlin/api/cryptography-core/dev.whyoleg.cryptography.operations/-secret-derivation/index.html) and [shared secret derivation](https://whyoleg.github.io/cryptography-kotlin/api/cryptography-core/dev.whyoleg.cryptography.operations/-shared-secret-generator/index.html) APIs.

Hey! AFAIK EC private key encoding via just `secret` value is not that popular comparing to RAW public key encoding. Also, there are different formats for raw encoding of EC...

It was fixed in https://github.com/whyoleg/cryptography-kotlin/commit/2dad24caaf84807f04c20e66557cc8994bd97ea7 and will be available in 0.4.0. Note: `RAW` decoding of ECDSA private key will not be supported with Apple provider because of the underlying API...