Home > Mobile >  iOS CSR generating with native tools
iOS CSR generating with native tools

Time:09-09

I want to generate CSR in iOS with native tools (not openssl). I searched, and I found that iOS doesn't have an API for that, so I began to search for third party libraries and I found ateska's library but I cannot use it, because it's GPL-2.0. licensed. Then I found another library from outfoxx, (linked in this answer from Josh Correia) which is MIT licensed, so I could use it, but it's poorly documented, and I'm a newbie in iOS development, so I don't know how to generate the CSR with it. Could somebody please help me, and show an example how to use it? Thanks.

CodePudding user response:

Meanwhile I could generate the CSR by myself based on this post: https://github.com/outfoxx/Shield/discussions/36

  • Related