summaryrefslogtreecommitdiffstats
path: root/keystore
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fix network order for marshalling in keystore interface.repo sync2009-08-101-15/+16
|/ | | | This will fix the endian issue for heterogeneous architectures in keystore marshalling interface.
* Fix the auto notification cleanup when vpn is disconnected.Chung-yih Wang2009-08-031-1/+5
| | | | + add the log print if the browser give the incorrect data in addCertificate().
* Change some log.i to log.d.Hung-ying Tyan2009-08-011-4/+6
|
* Support x509-user-cert mime type in browser.Chung-yih Wang2009-07-282-2/+2
| | | | + Fix the public key matching and intent parameter mismatch.
* Forgot to convert the jstring to char* in certificate request.Chung-yih Wang2009-07-281-4/+8
|
* Change to SPKAC certificate request format for keygen.Chung-yih Wang2009-07-243-38/+27
|
* Cleanup the old keystore APIs.Chung-yih Wang2009-07-221-106/+0
|
* Return error codes for storing the key/cert in addPkcs12Keystore()Chung-yih Wang2009-07-221-10/+28
|
* Support addPkcs12Keystore function in CertTool library.Chung-yih Wang2009-07-184-20/+256
| | | | | The function will be called from the credential storage for decoding the pkcs12 file and saving the certs/keys into mini-keystore.
* Add password field for WiFi configuration.Chung-yih Wang2009-07-052-5/+11
| | | | | | | 1. the certtool.h is modified for avoiding the side effect, for saving the configuration with wpa_supplicant. 2. put the loadLibrary back in CertTool.java 3. Fix incorrect JNI declarations.
* Migrate to the CertTool library.Chung-yih Wang2009-07-042-0/+12
| | | | | | | | | | Keystore is reimplemented and it is mainly for storing (key, value) pair generically. The certificate related APIs are moved to the class CertTool instead. Updates: Provide the getInstance() which gives the singleton. Fix the missing construction of the BIO in cert.c.
* Fix null data handling in ServiceCommand.writeCommand()Hung-ying Tyan2009-07-031-1/+1
|
* Remove the null-termination for Java string compatibility.Chung-yih Wang2009-07-022-4/+12
| | | | | | 1. Also change the keyname delimiter in CertTool.java. 2. Return NOTFOUND if the result.len==0 in the listKeys(). 3. Define the keystore states in the class Keystore.
* Add CertTool for handling the keygen and certificate download.Chung-yih Wang2009-07-028-141/+829
| | | | | | | 1. Have the new Keystore for mini-keystore impelemntation. 2. Add CertTool library and jni dll for handling keygen and certificates. 3. Make Reply hidden. 4. Revert some 'incorrect' change and correct the description.
* Change addCertificate to take byte[] instead of String as we don't know the ↵Grace Kloba2009-06-191-2/+2
| | | | | | encoding. In WebView, if we run into the certificate, we will save it to the Keystore instead of sending it to the WebKit.
* Change the keystore APIs.Chung-yih Wang2009-06-171-14/+106
| | | | | 1. simplify the keypair selection in UI. 2. add the user certificate and key into the keystore for keygen feature.
* Change the first parameter of Keystore.generateKeyPair() to int.Hung-ying Tyan2009-06-162-31/+12
| | | | | | * changes change the parameter to the index to the supported key strengths remove the exception class as it is not useful now
* Add keygen API to Keystore.Hung-ying Tyan2009-06-162-0/+69
|
* Provide the Keystore feature in the framework.Chung-yih Wang2009-06-112-0/+281
-- added the keystore library for Java application. -- changed the marshalling of the keystore function return.