Difference between revisions of "HowTo"

From The ECRYPT Hash Function Website
(InProceedings)
(InProceedings)
 
Line 161: Line 161:
 
   editor = {Joan Daemen and Vincent Rijmen},
 
   editor = {Joan Daemen and Vincent Rijmen},
 
   abstract = {This is the abstract of this paper}
 
   abstract = {This is the abstract of this paper}
}
 
</bibtex>
 
 
<bibtex>
 
@inproceedings{WangY05,
 
  author    = {Xiaoyun Wang and
 
              Hongbo Yu},
 
  title    = {{How to Break MD5 and Other Hash Functions}},
 
  booktitle = {EUROCRYPT},
 
  year      = {2005},
 
  pages    = {19-35},
 
  ee        = {http://dx.doi.org/10.1007/11426639_2},
 
  crossref  = {eurocrypt/2005},
 
  bibsource = {DBLP, http://dblp.uni-trier.de}
 
}
 
 
@proceedings{eurocrypt/2005,
 
  editor    = {Ronald Cramer},
 
  title    = {Advances in Cryptology - EUROCRYPT 2005, 24th Annual
 
              International
 
              Conference on the Theory and Applications of Cryptographic
 
              Techniques, Aarhus, Denmark, May 22-26, 2005, Proceedings},
 
  booktitle = {EUROCRYPT},
 
  publisher = {Springer},
 
  series    = {LNCS},
 
  volume    = {3494},
 
  year      = {2005},
 
  isbn      = {3-540-25910-4},
 
  bibsource = {DBLP, http://dblp.uni-trier.de}
 
 
}
 
}
 
</bibtex>
 
</bibtex>

Latest revision as of 13:48, 6 March 2008

1 Working with maths and Tex

We can write "normal" latex equation by using the math class. For instance the following code

<math>
{\textbf x}_{t} = {\textbf f}({x}_{t-1},{u}_{t-1},{p}_{t-1})
</math>

is displayed as

<math> {\textbf x}_{t} = {\textbf f}({x}_{t-1},{u}_{t-1},{p}_{t-1}) </math>

In order to use tex commands from the amsmath package we use the class amsmath. Automated numbering of equations works within a single amsmath environment. The class amsmath uses the tex template defined in /var/www/html/mediawiki/extensions/wikitex/wikitex.math.inc.tex

I changed the template such that we can define global commands. The template looks like

 \documentclass[10pt]{article}
 \usepackage{amssymb,amsmath,amscd,concmath}
 % we can define whatever comments we would like to use for consistency.
 % of course we have to somewhere list this special commands (may be we can use
 % a pop up with editiing help or somkething similar
 % for instance:
 \newcommand{\rs}{\ensuremath{\gg}} %right shift >>
 \newcommand{\ls}{\ensuremath{\ll}} %left shift <<
 \newcommand{\rr}{\ensuremath{\ggg}}  %right rotate >>>
 \newcommand{\lr}{\ensuremath{\lll}}  %left rotate <<<
 \pagestyle{empty}
 \begin{document}
 %value%
 \end{document}

For instance:

code fragment displayed equation
 <amsmath>
 \begin{equation}
 a = \sum_{i=0}^{n}{2^i}
 \end{equation}
 </amsmath>
 
math
%value% in tex-template is \begin{equation}...\end{equation}


If we start a new amsmath environment then the equation numbering starts from counter=1 again. Start a new amsmath environment:

math

as we see both envrionments start with 1.

Note: to refer to an equation we will have to use a wiki link ...

If we use math inline then we have the following possibilities:

  • Best know attack: 263 by Wang et.al. using html:
    2<sup>63</sup>
  • Best know attack: math by Wang et.al. using amsmath
    <amsmath>\begin{displaymath}2^{63}\end{displaymath}</amsmath>
  • Best know attack: <math>2^{63}</math> by Wang et.al. using math
    <math>2^{63}</math>


I think the first case looks best regarding the inline alignment. So I would suggest to use html for powers.

2 References and bibtex

2.1 Misc

<bibtex>
@MISC{HATTORI2004Complexityofthe,
  author = {Mitsuhiro HATTORI and Shoichi HIROSE and Susumu YOSHIDA},
  title = {Complexity of the Collision and Near-Collision Attack on SHA-0 with Different Message Schedules},
  howpublished = {Cryptology ePrint Archive, Report 2004/325},
  year = {2004},
  note = {\url{http://eprint.iacr.org/}},
  url = {http://eprint.iacr.org/},
}
</bibtex>

is displayed as:

Mitsuhiro HATTORI, Shoichi HIROSE, Susumu YOSHIDA - Complexity of the Collision and Near-Collision Attack on SHA-0 with Different Message Schedules

,2004
http://eprint.iacr.org/
Bibtex
Author : Mitsuhiro HATTORI, Shoichi HIROSE, Susumu YOSHIDA
Title : Complexity of the Collision and Near-Collision Attack on SHA-0 with Different Message Schedules
In : -
Address :
Date : 2004

2.2 InProceedings

<bibtex>
@INPROCEEDINGS{2,
  author = {Daewan Han and Sangwoo Park and Seongtaek Chee},
  title = {Cryptanalysis of the Modified Version of the Hash Function Proposed at PKC'98.},
  booktitle = {Fast Software Encryption 2002},
  year = {2002},
  series = {LNCS},
  pages = {252-262},
  volume = {2365},
  publisher = {Springer},
  editor = {Joan Daemen and Vincent Rijmen},
  abstract = {This is the abstract of this paper}
}
</bibtex>

is displayed as:

Daewan Han, Sangwoo Park, Seongtaek Chee - Cryptanalysis of the Modified Version of the Hash Function Proposed at PKC'98.

Fast Software Encryption 2002 2365:252-262,2002
Bibtex
Author : Daewan Han, Sangwoo Park, Seongtaek Chee
Title : Cryptanalysis of the Modified Version of the Hash Function Proposed at PKC'98.
In : Fast Software Encryption 2002 -
Address :
Date : 2002



2.3 Article

<bibtex>
@ARTICLE{3,
  author = {Hans Dobbertin},
  title = {Cryptanalysis Of MD4},
  journal = {Journal of Cryptology},
  year = {1998},
  volume = {11},
  number = {4},
  pages = {253--271},
}
</bibtex>

is displayed as:

Hans Dobbertin - Cryptanalysis Of MD4

Journal of Cryptology 11(4):253--271,1998
Bibtex
Author : Hans Dobbertin
Title : Cryptanalysis Of MD4
In : Journal of Cryptology -
Address :
Date : 1998

2.4 Book

<bibtex>
@BOOK{4,
  title = {Handbook of Applied Cryptography},
  publisher = {CRC Press},
  year = {1997},
  author = {Alfred J. Menezes and Paul C. van Oorschot and Scott A. Vanstone},
  note = {Available online at \url{http://www.cacr.math.uwaterloo.ca/hac/}},
}
</bibtex>

is displayed as:

Alfred J. Menezes, Paul C. van Oorschot, Scott A. Vanstone - Handbook of Applied Cryptography

CRC Press,1997
Bibtex
Author : Alfred J. Menezes, Paul C. van Oorschot, Scott A. Vanstone
Title : Handbook of Applied Cryptography
In : -
Address :
Date : 1997

3 About different skins

Every user can define his own skin. Nevertheless, it turnes out the the skin influences the alignment of inline amsmath environments. If we use the standard skin, namely MonoBook (default) then the alignment is pretty ok.

therefore, I suggest to keep this skin as default.


Testpage1