Development by Davis: “Six ways to celebrate St. Patrick's Day the open source way” plus 3 more |
- Six ways to celebrate St. Patrick's Day the open source way
- Australia is leading a global, digital, open education revolution
- Open States project achieves grand milestone
- Unifying Key Store Access in ICS
Six ways to celebrate St. Patrick's Day the open source way Posted: 14 Mar 2012 06:00 AM PDT Bet you didn't think St. Patrick's Day had anything to do with open source. You're wrong--here are six things you can do to celebrate the green day the open source way: |
Australia is leading a global, digital, open education revolution Posted: 14 Mar 2012 04:00 AM PDT Australia is ranked first among English-speaking counties and second in the world in leading a global, digital, open education revolution. Australia follows closely behind top-ranked South Korea –a nation with a bold policy goal of all textbooks and the entire school curriculum available in digital formats by 2015. In February 2012, the Australian government released a new version of their My School website. Users can now search nearly 10,000 Australian schools for statistical information and other details on a particular school, or to compare similar schools. The website provides a range of measures, including the National Assessment Program for Literacy and Numeracy, to help parents with school enrollment. |
Open States project achieves grand milestone Posted: 13 Mar 2012 03:00 PM PDT Three years ago at PyCon 2009, we had the first PyCon Open Government Hackathon. Our big project was Open States (then the 50 State Project). The goal was to begin scraping state legislatures' websites in the hope of providing a common format for bill metadata across all 50 states. |
Unifying Key Store Access in ICS Posted: 13 Mar 2012 09:44 AM PDT [This post is a group effort by Tony Chan, Fred Chung, Brian Carlstrom, and Kenny Root. — Tim Bray] Android 4.0 (ICS) comes with a number of enhancements that make it easier for people to bring their personal Android devices to work. In this post, we're going to have a look at the key store functionality. Back in Android 1.6 (Donut), a system key store was added for use by VPN. Although this was later expanded to support WiFi authentication, applications weren't able to access it. In the past, it was common practice for apps to maintain their own key store if they needed to authenticate a secure SSL web server, or authenticate the user to a server via a client certificate. While this works, it can present manageability issues in an enterprise environment where multiple certificates may be shared across a number of apps such as Email and Browser. New in ICS: KeyChainTo bridge the gap in ICS, there's a new API named KeyChain that regulates application access to the system key store and allows users to grant application access to the credentials stored there. Additionally, this API enables applications to initiate installation of credentials from X.509 certificates and PKCS#12 key stores. The KeyChain API is rather simple. To install a key store or a certificate, you retrieve an install intent, supply the raw bytes of the credentials, and use the intent to launch a system installation dialog. If it's a keystore, as in the example below, you'll need provide the data in PKCS#12 format, and the user will have to know the PKCS#12 password.
The install intent launches a system dialog that prompts the user to enter the password for the keystore. This can also be used for installing organizational CA certificates which will then be trusted by all applications to authenticate to non-public servers with certificates issued by the same CA. In ICS, Android no longer requires a separate password to protect the system credential storage. Rather, it uses the screen lock password for this purpose, and the Android Device Administration API can be used for central policy enforcement. This means, for example, that the screen lock password can't be removed as long as the secured credentials remain on the device. Accessing System Key Store CredentialsOnce the system key store is configured, the KeyChain API offers functions such as requesting a client certificate for authenticating with an SSL server. The first time an application requests access, the user is prompted with a list of available certificates and can select one to grant access to that certificate to the application. If the user chooses to allow access to a certificate, a string alias name for the certificate is returned to the application. The application can then use the alias to access the certificate in the future without further user involvement. The code below illustrates how an application can prompt the user to select a credential alias and grant access to the application. KeyChain will remember this selection such that the same application can save the credential alias selection and have access to the same certificate in future. For example, the Email application for ICS has implemented this feature in its Server Settings screen.
Once an application has been granted access to the certificate, it can access the private key through the getPrivateKey() method. It is worth noting that as with any PrivateKey objects, the application should not make assumptions about the encoding. For example, on some implementations the PrivateKey object may just be an opaque representation of a key stored in a hardware key store. Here's a sample code snippet that demonstrates the use of private key retrieved from the key store for signing:
A common use of the private key is for SSL client authentication. This can be implemented by using an HttpsURLConnection with a custom X509KeyManager that returns the PrivateKey retrieved from the KeyChain API. The open source Email application for ICS uses KeyChain with an X509ExtendedKeyManager. To learn more, have a look at the source code (in SSLUtils.java). This API provides a unified way to access the system key store credentials. If your application uses client certificates (take note: enterprise email client or web browser developers) you should definitely look into the KeyChain API for your next update! |
You are subscribed to email updates from Developers by Davis To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
No hay comentarios:
Publicar un comentario