Bill Allombert on Wed, 24 Aug 2005 11:18:16 +0200


[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]

Re: elliptic curve operations..


On Wed, Aug 24, 2005 at 04:11:22PM +0930, Mark Humphries wrote:
> Hi,
> 
>  Is there anyway you can access the source code of gp to see how it implements
> certain procedures? In particular I'm interested in the elladd and ellpow
> procedures.

You can try the following:

For vi/vim:
make ctags 
cd src
vi -t elladd

For emacs/xemacs:
make etags
cd src
emacs
M-. elladd

Cheers,
Bill.