michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef GCM_H michael@0: #define GCM_H 1 michael@0: michael@0: #include "blapii.h" michael@0: michael@0: typedef struct GCMContextStr GCMContext; michael@0: michael@0: /* michael@0: * The context argument is the inner cipher context to use with cipher. The michael@0: * GCMContext does not own context. context needs to remain valid for as long michael@0: * as the GCMContext is valid. michael@0: * michael@0: * The cipher argument is a block cipher in the ECB encrypt mode. michael@0: */ michael@0: GCMContext * GCM_CreateContext(void *context, freeblCipherFunc cipher, michael@0: const unsigned char *params, unsigned int blocksize); michael@0: void GCM_DestroyContext(GCMContext *gcm, PRBool freeit); michael@0: SECStatus GCM_EncryptUpdate(GCMContext *gcm, unsigned char *outbuf, michael@0: unsigned int *outlen, unsigned int maxout, michael@0: const unsigned char *inbuf, unsigned int inlen, michael@0: unsigned int blocksize); michael@0: SECStatus GCM_DecryptUpdate(GCMContext *gcm, unsigned char *outbuf, michael@0: unsigned int *outlen, unsigned int maxout, michael@0: const unsigned char *inbuf, unsigned int inlen, michael@0: unsigned int blocksize); michael@0: michael@0: #endif