remove C++ comments

This commit is contained in:
toddouska
2015-07-02 13:52:37 -07:00
parent b183bdc009
commit 6355bb4daf
2 changed files with 0 additions and 7 deletions

View File

@ -13295,8 +13295,6 @@ static int SetECKeyExternal(WOLFSSL_EC_KEY* eckey)
return SSL_FATAL_ERROR;
}
//eckey->pub_key->internal = (ecc_point*)&(key->pubkey);
/* set the external pubkey (point) */
if (SetECPointExternal(eckey->pub_key) < 0) {
WOLFSSL_MSG("SetECKeyExternal SetECPointExternal failed");
@ -13913,7 +13911,6 @@ int wolfSSL_EC_POINT_get_affine_coordinates_GFp(const WOLFSSL_EC_GROUP *group, c
WOLFSSL_BIGNUM *x, WOLFSSL_BIGNUM *y, WOLFSSL_BN_CTX *ctx)
{
(void)ctx;
//ecc_point *p;
WOLFSSL_ENTER("wolfSSL_EC_POINT_get_affine_coordinates_GFp");
@ -13931,8 +13928,6 @@ int wolfSSL_EC_POINT_get_affine_coordinates_GFp(const WOLFSSL_EC_GROUP *group, c
}
}
//p = (ecc_point*)point->internal;
BN_copy(x, point->X);
BN_copy(y, point->Y);

View File

@ -235,8 +235,6 @@
* It defaults to 4096-bits [allowing multiplications upto 2048x2048 bits ]
*/
/* For DH with 3072 bits key size */
//#define FP_MAX_BITS 32768
#ifndef FP_MAX_BITS
#define FP_MAX_BITS 4096