HomeSort by relevance Sort by last modified time
    Searched refs:rctx (Results 1 - 5 of 5) sorted by null

  /external/openssl/crypto/ocsp/
ocsp_ht.c 112 void OCSP_REQ_CTX_free(OCSP_REQ_CTX *rctx)
114 if (rctx->mem)
115 BIO_free(rctx->mem);
116 if (rctx->iobuf)
117 OPENSSL_free(rctx->iobuf);
118 OPENSSL_free(rctx);
121 int OCSP_REQ_CTX_set1_req(OCSP_REQ_CTX *rctx, OCSP_REQUEST *req)
126 if (BIO_printf(rctx->mem, req_hdr, i2d_OCSP_REQUEST(req, NULL)) <= 0)
128 if (i2d_OCSP_REQUEST_bio(rctx->mem, req) <= 0)
130 rctx->state = OHS_ASN1_WRITE
159 OCSP_REQ_CTX *rctx; local
    [all...]
ocsp.h 407 int OCSP_sendreq_nbio(OCSP_RESPONSE **presp, OCSP_REQ_CTX *rctx);
408 void OCSP_REQ_CTX_free(OCSP_REQ_CTX *rctx);
409 int OCSP_REQ_CTX_set1_req(OCSP_REQ_CTX *rctx, OCSP_REQUEST *req);
410 int OCSP_REQ_CTX_add1_header(OCSP_REQ_CTX *rctx,
  /external/openssl/crypto/rsa/
rsa_pmeth.c 90 RSA_PKEY_CTX *rctx; local
91 rctx = OPENSSL_malloc(sizeof(RSA_PKEY_CTX));
92 if (!rctx)
94 rctx->nbits = 1024;
95 rctx->pub_exp = NULL;
96 rctx->pad_mode = RSA_PKCS1_PADDING;
97 rctx->md = NULL;
98 rctx->tbuf = NULL;
100 rctx->saltlen = -2;
102 ctx->data = rctx;
140 RSA_PKEY_CTX *rctx = ctx->data; local
155 RSA_PKEY_CTX *rctx = ctx->data; local
213 RSA_PKEY_CTX *rctx = ctx->data; local
269 RSA_PKEY_CTX *rctx = ctx->data; local
324 RSA_PKEY_CTX *rctx = ctx->data; local
338 RSA_PKEY_CTX *rctx = ctx->data; local
375 RSA_PKEY_CTX *rctx = ctx->data; local
523 RSA_PKEY_CTX *rctx = ctx->data; local
    [all...]
  /external/openssl/crypto/evp/
pmeth_lib.c 254 EVP_PKEY_CTX *rctx; local
265 rctx = OPENSSL_malloc(sizeof(EVP_PKEY_CTX));
266 if (!rctx)
269 rctx->pmeth = pctx->pmeth;
271 rctx->engine = pctx->engine;
277 rctx->pkey = pctx->pkey;
282 rctx->peerkey = pctx->peerkey;
284 rctx->data = NULL;
285 rctx->app_data = NULL;
286 rctx->operation = pctx->operation
    [all...]
  /external/openssl/include/openssl/
ocsp.h 407 int OCSP_sendreq_nbio(OCSP_RESPONSE **presp, OCSP_REQ_CTX *rctx);
408 void OCSP_REQ_CTX_free(OCSP_REQ_CTX *rctx);
409 int OCSP_REQ_CTX_set1_req(OCSP_REQ_CTX *rctx, OCSP_REQUEST *req);
410 int OCSP_REQ_CTX_add1_header(OCSP_REQ_CTX *rctx,

Completed in 54 milliseconds