cryptobib / db

CryptoBib Database for Developers
40 stars 67 forks source link

Bibtex hash size exceeded #71

Closed PanosChtz closed 5 years ago

PanosChtz commented 5 years ago

I am trying to compile my manuscript. I am using the CCS template, as follows:

\bibliographystyle{ACM-Reference-Format}
\bibliography{mybibliography,abbrev3,crypto}

But when I compile my tex, I am getting the following errors, and the reference list does not show up:

This is BibTeX, Version 0.99d (TeX Live 2017/Debian)
The top-level auxiliary file: main.aux
The style file: ACM-Reference-Format.bst
A level-1 auxiliary file: appendix.aux
Database file #1: mybibliography.bib
Database file #2: abbrev3.bib
Database file #3: crypto.bib
Sorry---you've exceeded BibTeX's hash size 100000
Aborted at line 291526 of file crypto.bib
(That was a fatal error)

Process exited with error(s)

However, if I break the bib files into 3 separate lines, it compiles (with some warnings) but this way I am getting my references displayed 3 times...

\bibliography{mybibliography}
\bibliography{abbrev3}
\bibliography{crypto}

Is there any solution for that? I have tried looking on how to increase the Bibtex hash size but couldn't find anything...

PanosChtz commented 5 years ago

It seems that the following entries caused trouble:

@InProceedings{C:Rothblum12,
  author =       "Guy N. Rothblum",
  title =        "How to Compute under {${\cal{AC}}^{\sf0}$} Leakage without Secure Hardware",
  pages =        "552--569",
  editor =       crypto12ed,
  booktitle =    crypto12name,
  volume =       crypto12vol,
  address =      cryptoaddr,
  month =        crypto12month,
  publisher =    cryptopub,
  series =       mylncs,
  year =         2012,
  doi =          "10.1007/978-3-642-32009-5_32",
}
@InProceedings{RSA:Leurent10,
  author =       "Ga{\"e}tan Leurent",
  title =        "Practical Key Recovery Attack against Secret-{IV} {Edon-{\cal R}}",
  pages =        "334--349",
  editor =       rsa10ed,
  booktitle =    rsa10name,
  volume =       rsa10vol,
  address =      rsa10addr,
  month =        rsa10month,
  publisher =    rsapub,
  series =       mylncs,
  year =         2010,
  doi =          "10.1007/978-3-642-11925-5_23",
}
@InProceedings{FOCS:KarKol94,
  author =       "David R. Karger and
                  Daphne Koller",
  title =        "({D}e)randomized Construction of Small Sample Spaces in {\cal NC}",
  pages =        "252--263",
  editor =       focs93ed,
  booktitle =    focs94name,
  address =      focs94addr,
  month =        focs94month,
  publisher =    focspub,
  year =         1994,
  doi =          "10.1109/SFCS.1994.365689",
}
@InProceedings{ACISP:YYFHS16,
  author =       "Xun Yi and
                  Xuechao Yang and
                  Yong Feng and
                  Fengling Han and
                  Ron G. van Schyndel",
  title =        "{CTM}-sp: {A} Family of Cryptographic Hash Functions from Chaotic Tent Maps",
  pages =        "329--342",
  editor =       acisp16ed,
  booktitle =    acisp16name1,
  volume =       acisp16vol1,
  address =      acisp16addr,
  month =        acisp16month,
  publisher =    acisppub,
  series =       mylncs,
  year =         2016,
  doi =          "10.1007/978-3-319-40253-6_20",
}