summaryrefslogtreecommitdiff
path: root/lib/ssl/sslimpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ssl/sslimpl.h')
-rw-r--r--lib/ssl/sslimpl.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/ssl/sslimpl.h b/lib/ssl/sslimpl.h
index 2e0fbdec8..9f3f522c3 100644
--- a/lib/ssl/sslimpl.h
+++ b/lib/ssl/sslimpl.h
@@ -608,7 +608,7 @@ struct sslSessionIDStr {
} ssl2;
struct {
/* values that are copied into the server's on-disk SID cache. */
- uint8 sessionIDLength;
+ PRUint8 sessionIDLength;
SSL3Opaque sessionID[SSL3_SESSIONID_BYTES];
ssl3CipherSuite cipherSuite;
@@ -865,7 +865,7 @@ struct ssl3StateStr {
/* This says what cipher suites we can do, and should
* be either SSL_ALLOWED or SSL_RESTRICTED
*/
- PRArenaPool * peerCertArena;
+ PLArenaPool * peerCertArena;
/* These are used to keep track of the peer CA */
void * peerCertChain;
/* chain while we are trying to validate it. */
@@ -919,26 +919,26 @@ typedef struct SSLWrappedSymWrappingKeyStr {
} SSLWrappedSymWrappingKey;
typedef struct SessionTicketStr {
- uint16 ticket_version;
+ PRUint16 ticket_version;
SSL3ProtocolVersion ssl_version;
ssl3CipherSuite cipher_suite;
SSLCompressionMethod compression_method;
SSLSignType authAlgorithm;
- uint32 authKeyBits;
+ PRUint32 authKeyBits;
SSLKEAType keaType;
- uint32 keaKeyBits;
+ PRUint32 keaKeyBits;
/*
* exchKeyType and msWrapMech contain meaningful values only if
* ms_is_wrapped is true.
*/
- uint8 ms_is_wrapped;
+ PRUint8 ms_is_wrapped;
SSLKEAType exchKeyType; /* XXX(wtc): same as keaType above? */
CK_MECHANISM_TYPE msWrapMech;
- uint16 ms_length;
+ PRUint16 ms_length;
SSL3Opaque master_secret[48];
ClientIdentity client_identity;
SECItem peer_cert;
- uint32 timestamp;
+ PRUint32 timestamp;
SECItem srvName; /* negotiated server name */
} SessionTicket;
@@ -1535,7 +1535,7 @@ typedef enum { ec_noName = 0,
ec_pastLastName
} ECName;
-extern SECStatus ssl3_ECName2Params(PRArenaPool *arena, ECName curve,
+extern SECStatus ssl3_ECName2Params(PLArenaPool *arena, ECName curve,
SECKEYECParams *params);
ECName ssl3_GetCurveWithECKeyStrength(PRUint32 curvemsk, int requiredECCbits);