mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 01:17:34 +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
30
security/nss/lib/freebl/ecl/eclt.h
Normal file
30
security/nss/lib/freebl/ecl/eclt.h
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
/* This header holds ECC types and must not be exported publicly. */
|
||||
|
||||
#ifndef __eclt_h_
|
||||
#define __eclt_h_
|
||||
|
||||
/* byte encoding of curve parameters */
|
||||
struct ECCurveBytesStr {
|
||||
char *text;
|
||||
ECField field;
|
||||
size_t size;
|
||||
const PRUint8 *irr;
|
||||
const PRUint8 *curvea;
|
||||
const PRUint8 *curveb;
|
||||
const PRUint8 *genx;
|
||||
const PRUint8 *geny;
|
||||
const PRUint8 *order;
|
||||
const PRUint8 *base;
|
||||
int cofactor;
|
||||
int security;
|
||||
size_t pointSize;
|
||||
size_t scalarSize;
|
||||
unsigned int usage;
|
||||
};
|
||||
typedef struct ECCurveBytesStr ECCurveBytes;
|
||||
|
||||
#endif /* __ecl_h_ */
|
||||
Loading…
Add table
Add a link
Reference in a new issue