Is anyone aware of a C# implementation of the Z85 character encoding specification? I have found the C/C++ library by artemkin, but would like a native C# library if one exists.
Asked
Active
Viewed 557 times
2
-
1Looks easy to implement.. you could write your own! Unfortunately, questions asking for library recommendations are off-topic here. – Blorgbeard Nov 06 '14 at 03:37
-
@Blorgbeard yes I'm thinking that is what I'm going to do. Sorry, is there a good location for a question such as this? – Adam Smith Nov 06 '14 at 03:40
-
Not that I know of, sorry.. Good luck with your implementation! – Blorgbeard Nov 06 '14 at 03:45
-
For anyone getting here, some examples: https://github.com/LogosBible/Logos.Utility/blob/master/src/Logos.Utility/Ascii85.cs https://github.com/coding-horror/ascii85/blob/master/Ascii85ConsoleSolution/Ascii85.cs – mBardos Feb 02 '22 at 08:02
-
I also added my own implementation to Nuget - https://www.nuget.org/packages/Cromulent.Encoding.Z85/ – Adam Smith Feb 04 '22 at 09:57