cryptoservices/filebasedcertificateandkeystores/source/shared/DHParams.cpp
changeset 8 35751d3474b7
parent 0 2c201484c85f
equal deleted inserted replaced
2:675a964f4eb5 8:35751d3474b7
    23 	{
    23 	{
    24 	iN.Close();
    24 	iN.Close();
    25 	iG.Close();
    25 	iG.Close();
    26 	}
    26 	}
    27 
    27 
    28 EXPORT_C CDHParams::CDHParams(RInteger aN, RInteger aG)
    28 EXPORT_C CDHParams::CDHParams(const RInteger aN, const RInteger aG)
    29 	: iN(aN), iG(aG)
    29 	: iN(aN), iG(aG)
    30 	{
    30 	{
    31 	}
    31 	}
    32 
    32 
    33 EXPORT_C CDHParams* CDHParams::NewL(const TInteger& aN, const TInteger& aG)
    33 EXPORT_C CDHParams* CDHParams::NewL(const TInteger& aN, const TInteger& aG)
    52 	{
    52 	{
    53 	RInteger result = iG;
    53 	RInteger result = iG;
    54 	iG = RInteger();
    54 	iG = RInteger();
    55 	return result;
    55 	return result;
    56 	}
    56 	}
       
    57