When used as containers for so-called "hybrid" web apps, do UIWebView and WebView provide a way for the developer to encrypt, store, and decrypt values in the client app?
For example, could the native code see that a web page being rendered has
<form action = "foo">
<input type="password" autocomplete="on" id="pword" name="pword" />
</form>
and then present a message to the user, asking if the password should be remembered, and if so, save the password securely somewhere on the device, and then when that same page is requested at some later time, auto-fill the form field?
Background: we are contemplating using a third-party framework to write some hybrid mobile apps for the company extranet, and the powers-that-be want these apps to be able to remember users' passwords and autofill them, for various (legacy) web applications already developed and deployed on our extranet, just as a web browser could. My impression is that we could retrofit the logon pages of our legacy web applications to use cookies or localStorage, if we incorporated a javascript encryption library; but it would be much better if we could find a hybrid mobile app framework that has already implemented this sort of password management natively, emulating the browser native on the device. Is a native implementation of password management possible with UIWebView and WebView, so we wouldn't have to retrofit our existing web applications?