Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can OS X's password assistant be used in 3rd party apps?

I'd like to use OS X's password assistant in my 3rd party app.

enter image description here

I couldn't find anything in Apple's docs, but this old post says that password assistant is accessed through a private API. Is this still true?

like image 832
pepsi Avatar asked Nov 05 '22 03:11

pepsi


1 Answers

It's very likely true but there are plenty of examples online for creating "secure password generators" - many of which are liberally licensed so you can use the approach (if not the exact code) to make your own.

Like recipe book and address book apps, there are many "password generator" apps out there for the Mac already, primarily because it's an easy target for a beginning developer to create.

If it were me, I'd just add a new window controller and xib then implement my own in a style that looks like it's part of my app. The UI is dead simple and so is the "generator" routine.

like image 76
Joshua Nozzi Avatar answered Nov 09 '22 05:11

Joshua Nozzi