whyoleg/cryptography-kotlin

CRC support

sjaramillo10 opened this issue ยท 2 comments

Hey there ๐Ÿ‘‹

I just started using the BigInt functionality of this library and a slightly different use case came across: CRC (Cyclic Redundancy Check). Would that be in-scope for this library? If so, how likely is it to be supported? Thanks!

Hey, thank you for your interest!
Unfortunately, at least for now, I don't see CRC fitting the scope of the library. I think, that CRC could be a part of IO library (like kotlinx.io) and not part of cryptography library. F.e okio has internal CRC implementation for ZIP support.

Thanks for replying back!

I understand, makes sense. I ended up implementing the functionality myself, which is not that hard honestly. I did not know that okio had an internal implementation for that, I couldโ€™ve used it for inspiration ๐Ÿค”

I am closing this issue, keep up the good work ๐Ÿ™Œ