Re: about the big number xor

2009-09-13 Thread jaze lee
2009/9/14 Mounir IDRASSI : > Hi, > > There is no explicit function for this but you can use the function > BN_GF2m_add to perform the XOR of two BIGNUMs : for GF2m polynomials, > the addition is a simple bitwise XOR. Thank you very much, i use cscope and find the BN_GF2m_add , the note is " Add pol

Re: about the big number xor

2009-09-13 Thread jaze lee
2009/9/14 jaze lee : > 2009/9/14 Mounir IDRASSI : >> Hi, >> >> There is no explicit function for this but you can use the function >> BN_GF2m_add to perform the XOR of two BIGNUMs : for GF2m polynomials, >> the addition is a simple bitwise XOR. > Thank you very much, i use cscope and find the BN_GF

Re: about the big number xor

2009-09-13 Thread Mounir IDRASSI
Hi, There is no explicit function for this but you can use the function BN_GF2m_add to perform the XOR of two BIGNUMs : for GF2m polynomials, the addition is a simple bitwise XOR. Cheers, -- Mounir IDRASSI IDRIX http://www.idrix.fr jaze lee wrote: > I want to implement xor function of large num

about the big number xor

2009-09-13 Thread jaze lee
I want to implement xor function of large number . I do not know whether the similar function is already been implemented. If so, where i can find it . And if not i have to try , thank you ! __ OpenSSL Project