Home | History | Annotate | Download | only in ssl

Lines Matching defs:sgn

2242     SGNContext *     sgn = NULL;
2253 sgn = SGN_NewContext(SEC_OID_PKCS1_MD5_WITH_RSA_ENCRYPTION,key);
2254 if (!sgn)
2256 rv = SGN_Begin(sgn);
2259 rv = SGN_Update(sgn, ss->sec.ci.readKey, ss->sec.ci.keySize);
2262 rv = SGN_Update(sgn, ss->sec.ci.writeKey, ss->sec.ci.keySize);
2265 rv = SGN_Update(sgn, challenge, len);
2268 rv = SGN_Update(sgn, ss->sec.peerCert->derCert.data,
2272 rv = SGN_End(sgn, response);
2277 SGN_DestroyContext(sgn, PR_TRUE);