mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +09:00
Update NSS to 3.32.1-RTM
This commit is contained in:
parent
f29876f120
commit
c91ef9012b
512 changed files with 83203 additions and 16839 deletions
|
|
@ -54,6 +54,18 @@ extern void SEC_ASN1DecoderSetNotifyProc(SEC_ASN1DecoderContext *cx,
|
|||
|
||||
extern void SEC_ASN1DecoderClearNotifyProc(SEC_ASN1DecoderContext *cx);
|
||||
|
||||
/* Sets the maximum size that should be allocated for a single ASN.1
|
||||
* element. Set to 0 to indicate there is no limit.
|
||||
*
|
||||
* Note: This does not set the maximum size overall that may be allocated
|
||||
* while parsing, nor does it guarantee that the decoder won't allocate
|
||||
* more than |max_size| while parsing an individual element; rather, it
|
||||
* merely guarantees that any individual allocation for returned data
|
||||
* should not exceed |max_size|.
|
||||
*/
|
||||
extern void SEC_ASN1DecoderSetMaximumElementSize(SEC_ASN1DecoderContext *cx,
|
||||
unsigned long max_size);
|
||||
|
||||
extern SECStatus SEC_ASN1Decode(PLArenaPool *pool, void *dest,
|
||||
const SEC_ASN1Template *t,
|
||||
const char *buf, long len);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue