« Return to Thread: MIN_URL_SIZE problem in checkRFC822(...)

Re: MIN_URL_SIZE problem in checkRFC822(...)

by Peter Gutmann :: Rate this Message:

Reply to Author | View in Thread

Juraj Michalak <juraj.michalak@...> writes:

>checkRFC822(...) [cert/ext_def.c:2718] was called for identifier (I have used
>"root@amd" - amd is virtual server in my test environment and don't be sad I
>also have intel) -> checkURLString(...) [cert/ext_def.c:2588] -> and at the
>beginning:
>
>REQUIRES( urlLength >= MIN_URL_SIZE && urlLength < MAX_URL_SIZE );

Thanks, the correct check should actually be:

  REQUIRES( urlLength >= MIN_RFC822_SIZE && urlLength < MAX_URL_SIZE );

>I'm also reading your manual. I have copied reference part from your PDF to
>plain text file. I'm making extra notes from manual to that txt file - to
>have more info in function reference. I can provide it and also others can
>contribute. Is there any version system available? It would be nice to have
>full MAN pages for cryptlib.

There aren't any manpages because they're not terribly useful as documentation
(um, this could get into a long debate over documentation styles and quality
:-).  You're welcome to create manpages if you like and I can add them to the
cryptlib distribution, but it'd be better I think to get feedback on bits of
the manual that need clarification.

Peter.


_______________________________________________
Cryptlib mailing list
Cryptlib@... via Mail: cryptlib-request@...
Archive: ftp://ftp.franken.de/pub/crypt/cryptlib/archives/
http://news.gmane.org/gmane.comp.encryption.cryptlib
Posts from non-subscribed addresses are blocked to prevent spam, please
subscribe in order to post messages.

 « Return to Thread: MIN_URL_SIZE problem in checkRFC822(...)