equal
deleted
inserted
replaced
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 |