Home | History | Annotate | Download | only in importer

Lines Matching refs:sdrResult

84 struct SDRResult
90 typedef struct SDRResult SDRResult;
93 { SEC_ASN1_SEQUENCE, 0, NULL, sizeof (SDRResult) },
94 { SEC_ASN1_OCTET_STRING, offsetof(SDRResult, keyid) },
95 { SEC_ASN1_INLINE | SEC_ASN1_XTRN, offsetof(SDRResult, alg),
97 { SEC_ASN1_OCTET_STRING, offsetof(SDRResult, data) },
183 SDRResult sdrResult;
192 memset(&sdrResult, 0, sizeof sdrResult);
193 rv = SEC_QuickDERDecodeItem(arena, &sdrResult, g_template, data);
197 params = PK11_ParamFromAlgid(&sdrResult.alg);
202 key = PK11_FindFixedKey(slot, type, &sdrResult.keyid, cx);
207 &sdrResult.data, result);
230 &sdrResult.data, result);