Bug 402777: FREEBL_VERSION 3.010 should be encoded as 0x030A rather than

0x0310.  The Camellia functions and the PQG functions should be in the
version 3.010 section because they're added after version 3.009. r=nelson.
This commit is contained in:
wtc%google.com 2007-11-13 03:12:48 +00:00
Родитель 7483b18787
Коммит b8cc869a45
1 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -37,14 +37,14 @@
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
/* $Id: loader.h,v 1.20 2007-11-09 18:49:32 wtc%google.com Exp $ */
/* $Id: loader.h,v 1.21 2007-11-13 03:12:48 wtc%google.com Exp $ */
#ifndef _LOADER_H_
#define _LOADER_H_ 1
#include "blapi.h"
#define FREEBL_VERSION 0x0310
#define FREEBL_VERSION 0x030A
struct FREEBLVectorStr {
@ -458,6 +458,7 @@ struct FREEBLVectorStr {
unsigned char *xj);
/* Version 3.009 came to here */
SECStatus (* p_Camellia_InitContext)(CamelliaContext *cx,
const unsigned char *key,
unsigned int keylen,
@ -485,10 +486,11 @@ struct FREEBLVectorStr {
const unsigned char *input,
unsigned int inputLen);
/* Version 3.010 came to here */
void (* p_PQG_DestroyParams)(PQGParams *params);
void (* p_PQG_DestroyVerify)(PQGVerify *vfy);
/* Version 3.010 came to here */
};
typedef struct FREEBLVectorStr FREEBLVector;