Reputation: 11
I am facing issue in encrypting the final configuration profile to be sent to the iOS device(Phase 3).
I am using the Bouncy castle library to encrypt my final profile(http://elian.co.uk/post/2009/07/29/Bouncy-Castle-CSharp.aspx).
Questions:
A code sample would be very helpful.
NOTE: The profile is getting installed successfully without encryption or even if I sign the profile.
Upvotes: 0
Views: 283
Reputation: 3221
This has to be CMSAlgorithm.DES_EDE3_CBC encrypted from the identity certificate and Base64 encode the result. That result needs to be signed as you did in the previous stage.
Upvotes: 0
Reputation: 23268
On the server side you always
Upvotes: 1