summaryrefslogtreecommitdiffstats
path: root/keystore/java
Commit message (Collapse)AuthorAgeFilesLines
...
* Migrate to the CertTool library.Chung-yih Wang2009-07-041-0/+9
| | | | | | | | | | 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-024-141/+314
| | | | | | | 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.