@brief Load a file into memory that is in binary DER or ASCII PEM format. These are temporary objects that are used to load private keys, certificates etc into memory. @param obj_type [in] The format of the file. Can be one of: - SSL_OBJ_X509_CERT (no password required) - SSL_OBJ_X509_CACERT (no pa
(int obj_type, String filename, String password)
| 206 | * @return SSL_OK if all ok |
| 207 | */ |
| 208 | public int objLoad(int obj_type, String filename, String password) |
| 209 | { |
| 210 | return axtlsj.ssl_obj_load(m_ctx, obj_type, filename, password); |
| 211 | } |
| 212 | |
| 213 | /** |
| 214 | * @brief Transfer binary data into the object loader. |