Xuyi Wang / wolfcrypt

Dependents:   OS

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers dsa.h Source File

dsa.h

00001 /* dsa.h
00002  *
00003  * Copyright (C) 2006-2017 wolfSSL Inc.
00004  *
00005  * This file is part of wolfSSL.
00006  *
00007  * wolfSSL is free software; you can redistribute it and/or modify
00008  * it under the terms of the GNU General Public License as published by
00009  * the Free Software Foundation; either version 2 of the License, or
00010  * (at your option) any later version.
00011  *
00012  * wolfSSL is distributed in the hope that it will be useful,
00013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015  * GNU General Public License for more details.
00016  *
00017  * You should have received a copy of the GNU General Public License
00018  * along with this program; if not, write to the Free Software
00019  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
00020  */
00021 
00022 /*!
00023     \file wolfssl/wolfcrypt/dsa.h
00024 */
00025 
00026 #ifndef WOLF_CRYPT_DSA_H
00027 #define WOLF_CRYPT_DSA_H
00028 
00029 #include <wolfcrypt/types.h>
00030 
00031 #ifndef NO_DSA
00032 
00033 #include <wolfcrypt/integer.h>
00034 #include <wolfcrypt/random.h>
00035 
00036 /* for DSA reverse compatibility */
00037 #define InitDsaKey wc_InitDsaKey
00038 #define FreeDsaKey wc_FreeDsaKey
00039 #define DsaSign wc_DsaSign
00040 #define DsaVerify wc_DsaVerify
00041 #define DsaPublicKeyDecode wc_DsaPublicKeyDecode
00042 #define DsaPrivateKeyDecode wc_DsaPrivateKeyDecode
00043 #define DsaKeyToDer wc_DsaKeyToDer
00044 
00045 #ifdef __cplusplus
00046     extern "C" {
00047 #endif
00048 
00049 
00050 enum {
00051     DSA_PUBLIC   = 0,
00052     DSA_PRIVATE  = 1
00053 };
00054 
00055 /* DSA */
00056 typedef struct DsaKey {
00057     mp_int p, q, g, y, x;
00058     int   type;                               /* public or private */
00059     void* heap;                               /* memory hint */
00060 } DsaKey;
00061 
00062 WOLFSSL_API int wc_InitDsaKey(DsaKey* key);
00063 WOLFSSL_API int wc_InitDsaKey_h(DsaKey* key, void* h);
00064 WOLFSSL_API void wc_FreeDsaKey(DsaKey* key);
00065 WOLFSSL_API int wc_DsaSign(const byte* digest, byte* out,
00066                            DsaKey* key, WC_RNG* rng);
00067 WOLFSSL_API int wc_DsaVerify(const byte* digest, const byte* sig,
00068                              DsaKey* key, int* answer);
00069 WOLFSSL_API int wc_DsaPublicKeyDecode(const byte* input, word32* inOutIdx,
00070                                       DsaKey*, word32);
00071 WOLFSSL_API int wc_DsaPrivateKeyDecode(const byte* input, word32* inOutIdx,
00072                                        DsaKey*, word32);
00073 WOLFSSL_API int wc_DsaKeyToDer(DsaKey* key, byte* output, word32 inLen);
00074 
00075 #ifdef WOLFSSL_KEY_GEN
00076 WOLFSSL_API int wc_MakeDsaKey(WC_RNG *rng, DsaKey *dsa);
00077 WOLFSSL_API int wc_MakeDsaParameters(WC_RNG *rng, int modulus_size, DsaKey *dsa);
00078 #endif
00079 
00080 /* raw export functions */
00081 WOLFSSL_API int wc_DsaImportParamsRaw(DsaKey* dsa, const char* p,
00082                                       const char* q, const char* g);
00083 WOLFSSL_API int wc_DsaExportParamsRaw(DsaKey* dsa, byte* p, word32* pSz,
00084                                       byte* q, word32* qSz, byte* g,
00085                                       word32* gSz);
00086 WOLFSSL_API int wc_DsaExportKeyRaw(DsaKey* dsa, byte* x, word32* xSz, byte* y,
00087                                    word32* ySz);
00088 #ifdef __cplusplus
00089     } /* extern "C" */
00090 #endif
00091 
00092 #endif /* NO_DSA */
00093 #endif /* WOLF_CRYPT_DSA_H */
00094 
00095