glossary.tex (2520B)
1 %!TEX root = ../thesis.tex 2 3 % 4 % vorher in Konsole folgendes aufrufen: 5 % makeglossaries makeglossaries dokumentation.acn && makeglossaries dokumentation.glo 6 % 7 8 % 9 % Glossareintraege --> reference, name, beschreibung 10 % Aufruf mit \gls{...} 11 % 12 % \newglossaryentry{non-repudiation}{name={non-repudiation},plural={non-repudiation},description={After a message is signed, one can not dispute that a message was signed}} 13 % \newglossaryentry{sender_authenticity}{name={sender authenticity},plural={sender authenticity},description={The origin/sender of a message can not be forged}} 14 % \newglossaryentry{message_integrity}{name={message integrity},plural={message integrity},description={No unauthorized change to the message can be made, the message is tamperproof}} 15 \newglossaryentry{hkdf}{ 16 name = {HKDF}, 17 description = {The HMAC-based Extract-and-Expand Key Derivation Function is a function that takes potentially weak keying material as input and outputs high entropy keying material. For more information see section \ref{sec:kdf}} 18 } 19 20 \newglossaryentry{25519}{ 21 name = {Curve25519}, 22 description = {A popular elliptic curve used in many cryptographic systems based on elliptic curve cryptography. See section \ref{par:curve25519}} 23 } 24 25 \newglossaryentry{fdh}{ 26 name = {FDH}, 27 description = {A Full-Domain Hash is a hash function with an image size equal to the original gorup. See section \ref{sec:rsa-fdh}}. 28 } 29 30 \newglossaryentry{idempotence}{ 31 name = {idempotence}, 32 description = {Idempotence in the context of computer science is a property to ensure that the state of system will not change, no matter how many times the same request was made. See section \ref{abort-idempotency}} 33 } 34 35 \newglossaryentry{abort-idempotency}{ 36 name = {abort-idempotency}, 37 description = {Abort-idempotency is a special case of \gls{idempotence}. On every step in a protocol it needs to be ensured that even on an abort, the same request always receives the same response. See section \ref{abort-idempotency}} 38 } 39 40 \newglossaryentry{RSABS}{ 41 name = {RSA Blind Signatures}, 42 description = {Chaums Blind Signature Scheme based on RSA. See section \ref{sec:blind-rsa-sign}} 43 } 44 45 \newglossaryentry{CSBS}{ 46 name = {Clause Blind Schnorr Signatures}, 47 description = {A secure variant of Blind Schnorr Signature Schemes introduced in section \ref{sec:clause-blind-schnorr-sig}} 48 } 49 50 % \newglossaryentry{25519}{ 51 % name = {}, 52 % description = {} 53 % }