I'm working on a medical app that may be a subject to HIPAA requirements, and I'm thinking of a good way to uniquely identify multiple users within the app without using names or pictures. The concept of a colored graphics avatar comes to mind, like the one used by StackOverflow.
Is there some sort of a library that I can use for this kind of dynamic graphic creation? I'm interested in getting a UIImage representation of the gravatar.
Part of the requirement of the app may be sending messages to other users, and I think being able to dynamically generate a gravatar from the user id is much better option than worrying about sending/receiving/caching regular user avatars.
Thank you for your thoughts!