Ct-Fuzz: Fuzzing for Timing Leaks

Total Page:16

File Type:pdf, Size:1020Kb

Ct-Fuzz: Fuzzing for Timing Leaks ct-fuzz: Fuzzing for Timing Leaks Shaobo He Michael Emmi Gabriela Ciocarlie University of Utah, USA SRI International, USA SRI International, USA [email protected] [email protected] [email protected] Abstract—Testing-based methodologies like fuzzing are they are generally hardware-dependent. Furthermore, while able to analyze complex software which is not amenable to compiler optimizations are obliged to respect traditional traditional formal approaches like verication, model check- safety properties, they are not designed to respect two-safety ing, and abstract interpretation. Despite enormous success at exposing countless security vulnerabilities in many popular properties, and can thus generate insecure machine code. software projects, applications of testing-based approaches In this work we extend fuzzing to two-safety properties. have mainly targeted checking traditional safety properties In particular, we present ct-fuzz, 2 which enables the precise like memory safety. While unquestionably important, this discovery of timing-based information leaks while retaining class of properties does not precisely characterize other self-composition important security aspects such as information leakage, the ecacy of a-fuzz. Via [6], we reduce e.g., through side channels. testing two-safety properties to testing traditional safety In this work we extend testing-based software analysis properties by program transformation, eectively enabling methodologies to two-safety properties, which enables the the application of any fuzzer. Our implementation tackles precise discovery of information leaks in complex software. three basic challenges. First, the program under test must In particular, we present the ct-fuzz tool, which lends coverage-guided greybox fuzzers the ability to detect two- eciently simulate execution-pairs of the original; to avoid safety property violations. Our approach is capable of ex- overhead, each execution’s address space is copy-on-write posing violations to any two-safety property expressed as shared. Second, structured input-pairs must be derived from equality between two program traces. Empirically, we demon- random fuzzer-provided input; leaks are only witnessed strate that ct-fuzz swiftly reveals timing leaks in popular when inputs dier solely by secret content. Third, leakage- cryptographic implementations. inducing actions must be monitored; leaks are witnessed I. Introduction when, e.g., control ow or memory-access traces diverge, Security is a primary concern for software systems, where given inputs diering solely by secret content. errors like out-of-bounds memory accesses and inexhaustive Our implementation focuses on timing leaks related to input validation are responsible for dangerous and costly program control-ow and cpu cache; the name ct-fuzz refers incidents. Accordingly, many mechanisms exist for protecting to the constant-time property, asserting that the control-ow systems against common vulnerabilities like memory-safety er- and accessed memory locations of two executions diering rors and input injection. Among the most eective automated solely by secrets are identical. Besides constant-time, we approaches is coverage-based greybox fuzzing [1] popularized also apply ct-fuzz to ner-grained cache models to validate by a-fuzz,1 which has uncovered many critical vulnerabilities. secure yet non-constant-time programs which ensure identical Its ecacy is due to broad applicability and direct feedback: cache timing despite potentially-divergent memory-access afl’s genetic input-generation algorithm uses lightweight patterns, e.g., by preloading all accessed memory into the instrumentation to determine vulnerability-witnessing inputs. cache. While our implementation focuses on side-channel It works without user interaction and even source code, and leakage related to timing, it is extensible to other forms of sidesteps the computational and methodological bottlenecks leakage, e.g., power or electro-magnetic radiation, by further imposed by traditional program analysis techniques. extending the instrumentation mechanism to record other Fuzzers like a-fuzz target traditional temporal safety aspects of program behavior. In principle, ct-fuzz could be properties [2], i.e., properties concerning individual system extended to expose violations to any two-safety property executions. Important security aspects like secure information expressible as equality between two program traces. ow [3] are two-safety properties [4], i.e., properties concerning In the remainder we describe several aspects of the ct-fuzz pairs of executions, and cannot be precisely characterized as tool. Sections II–III cover foundations and implementation traditional safety properties [5]. Secure information ow is concerns in testing two-safety properties. Sections IV–V particularly insidious given the potential for side channels, cover ct-fuzz’s software architecture and basic functionality. through which adversaries may infer privileged information Sections VI–VII describe case studies and evaluation, demon- about the data accessed by a program, e.g., by correlating strating the application of ct-fuzz to many cryptographic execution-time dierences with control-ow dierences. Side- libraries. We outline future work in Section VIII. channels are dicult for programmers to reason about since 2ct-fuzz is on GitHub: https://github.com/michael-emmi/ct-fuzz, as are ex- 1American Fuzzy Lop: http://lcamtuf.coredump.cx/a/ periments: https://github.com/shaobo-he/ct-fuzz-artifact/releases/tag/icst2020. Coverage-Guided Greybox Fuzzer Fuzz Trace Monitor Input Crash? P II. Theoretical Foundations Self-Composition of P In this section we characterize ct-fuzz’s foundations, in- Monitor Input Trace Coverage-Guided cluding secure information ow, its reduction to traditional P Greybox Fuzzer safety properties, and coverage-guided greybox fuzzing. Input Split Diff? Crash? Fuzz Trace A. Secure Information Flow Monitor Monitor Input Trace Input Crash? We consider an abstract notion of secure information P P ow [3] over pairs of executions. Two executions e1 and e2 are f-equivalent with respect to some function f when Fig. 1. Self-composition simulates two Fig. 2. Coverage-guided fuzzers f(e1) = f(e2). We model program secrets by a declassication executions of a given program. generate inputs and report crashes. function D mapping each execution e to its declassied con- Self-Composition of P Monitor tent D(e), and say D-equivalent executions are comparable. Input Trace Intuitively, this equivalence relates executions whose input transition counts. From the perspective ofP this work, the and output values dier solely by secret content, e.g., by the salient aspects of a-fuzz areInput its broadSplit applicabilityDiff? Crash? and value of a secret key. Similarly, we model attacker capabilities eciency: it works without user interaction and source code, Monitor observation function O e and avoids prohibitive process-creationInput overheads byTrace sharing by an mapping each execution P to its observable content O(e), and say two O-equivalent executions’ address spaces in a copy-on-write fashion. These executions are indistinguishable. Intuitively, this equivalence features enable the rapid exploration of program executions relates executions which a given observer cannot dierentiate, for arbitrarily-complex software. e.g., because of negligible timing dierences. In practice, we distinguish timing variations by observing divergences in III. Design and Implementation Concerns control-ow decisions and accessed memory locations. Applying self-composition (§II-B) to coverage-guided grey- Denition 1. A program is secure when every pair of compara- box fuzzers (§II-C) poses three basic challenges: eciently ble executions are indistinguishable, for given declassication simulating execution pairs; deriving structured-input pairs and observation functions. from fuzzer-provided inputs (fuzz); and detecting leakage. B. Reducing Security to Safety A. Simulating Execution Pairs Self-composition [6] is program transformation reducing Self-composition (§II-B) dictates that two identical copies secure information ow to traditional safety properties. Here of a program execute in isolation. In the context of testing, we say a given program is safe when it cannot crash. This achieving isolation includes separating the address spaces simple notion of safety can capture violations to any temporal of each simulated execution so that the side-eects of one safety property [2] given adequate program instrumentation. are invisible to the other. On the one hand, the existing For instance, llvm’s thread, address, and memory sanitizers approach of duplicating procedures and variables is eective signal crashes upon thread- and memory-safety violations, for symbolic analyses like ct-verif [7]. However, actually and uses of uninitialized memory, respectively executing such duplicated programs on their target platforms The self-composition sc(P ) of program P is a program can alter the originals’ behavior signicantly, e.g., due to (Fig. 1) which executes two copies of P in isolation, i.e., exe- platform-dependent behavior. On the other hand, executing cution of each copy is independent of the other, which: copies in separate processes undermines the ecacy of fuzzers • halts when the copies’ executions are incomparable, and like a-fuzz which avoid process-creation overhead. • crashes when the copies’ executions are both comparable and distinguishable. B. Deriving Structured
Recommended publications
  • The Design of Rijndael: AES - the Advanced Encryption Standard/Joan Daemen, Vincent Rijmen
    Joan Daernen · Vincent Rijrnen Theof Design Rijndael AES - The Advanced Encryption Standard With 48 Figures and 17 Tables Springer Berlin Heidelberg New York Barcelona Hong Kong London Milan Paris Springer TnL-1Jn Joan Daemen Foreword Proton World International (PWI) Zweefvliegtuigstraat 10 1130 Brussels, Belgium Vincent Rijmen Cryptomathic NV Lei Sa 3000 Leuven, Belgium Rijndael was the surprise winner of the contest for the new Advanced En­ cryption Standard (AES) for the United States. This contest was organized and run by the National Institute for Standards and Technology (NIST) be­ ginning in January 1997; Rij ndael was announced as the winner in October 2000. It was the "surprise winner" because many observers (and even some participants) expressed scepticism that the U.S. government would adopt as Library of Congress Cataloging-in-Publication Data an encryption standard any algorithm that was not designed by U.S. citizens. Daemen, Joan, 1965- Yet NIST ran an open, international, selection process that should serve The design of Rijndael: AES - The Advanced Encryption Standard/Joan Daemen, Vincent Rijmen. as model for other standards organizations. For example, NIST held their p.cm. Includes bibliographical references and index. 1999 AES meeting in Rome, Italy. The five finalist algorithms were designed ISBN 3540425802 (alk. paper) . .. by teams from all over the world. 1. Computer security - Passwords. 2. Data encryption (Computer sCIence) I. RIJmen, In the end, the elegance, efficiency, security, and principled design of Vincent, 1970- II. Title Rijndael won the day for its two Belgian designers, Joan Daemen and Vincent QA76.9.A25 D32 2001 Rijmen, over the competing finalist designs from RSA, IBl\!I, Counterpane 2001049851 005.8-dc21 Systems, and an English/Israeli/Danish team.
    [Show full text]
  • MERGING+ANUBIS User Manual
    USER MANUAL V27.09.2021 2 Contents Thank you for purchasing MERGING+ANUBIS ........................................................................................... 6 Important Safety and Installation Instructions ........................................................................................... 7 Product Regulatory Compliance .................................................................................................................... 9 MERGING+ANUBIS Warranty Information................................................................................................ 11 INTRODUCTION .............................................................................................................................................. 12 Package Content ........................................................................................................................................ 12 OVERVIEW ................................................................................................................................................... 13 MERGING+ANUBIS VARIANTS AND KEY FEATURES ........................................................................ 13 ABOUT RAVENNA ...................................................................................................................................... 16 MISSION CONTROL - MODULAR BY SOFTWARE ............................................................................... 16 MERGING+ANUBIS panels description ....................................................................................................
    [Show full text]
  • Optimization of AES Encryption Algorithm with S- Box
    International Journal of Engineering Research and Technology. ISSN 0974-3154 Volume 6, Number 2 (2013), pp. 259-268 © International Research Publication House http://www.irphouse.com Optimization of AES Encryption Algorithm with S- Box Dr. J. Abdul Jaleel1, Anu Assis2 and Sherla A.3 Dept. Of Electrical and Electronics Engineering1,3, Dept. Of Electronics and Communication2 [email protected], [email protected] [email protected] Abstract In any wireless communication, security is crucial during data transmission. The encryption and decryption of data is the major challenge faced in the wireless communication for security of the data. These algorithms are used to ensure the security in the transmission channels. Similarly hardware utilization and power consumption are another major things to be considered since most of the mobile terminals are battery operated. In this paper, we use the Advanced Encryption Standard (AES) which works on a 128 bit data encrypting it with 128, 192 or 256 bits of keys for ensuring security. In this paper, we compare AES encryption with two different S-Boxes: S-box with 256 byte lookup table (Rijndael S-Box) and AES with 16 byte S-Box (Anubis S-Box). Optimized and synthesized VHDL code is used for AES encryption. Xilinx ISE 13.2i software is used for VHDL code implementation and Modelsim simulator is used for the simulation. Keywords: AES(Advanced Encryption Standard ), Rijndael, Cryptography, VHDL. Introduction As we move into twenty-first century, almost all information processing and telecommunication are in digital formats. In any wireless communication, security is crucial during data transmission. The encryption and decryption of data is the major challenge faced in the wireless communication for security of the data.
    [Show full text]
  • Identifying Open Research Problems in Cryptography by Surveying Cryptographic Functions and Operations 1
    International Journal of Grid and Distributed Computing Vol. 10, No. 11 (2017), pp.79-98 http://dx.doi.org/10.14257/ijgdc.2017.10.11.08 Identifying Open Research Problems in Cryptography by Surveying Cryptographic Functions and Operations 1 Rahul Saha1, G. Geetha2, Gulshan Kumar3 and Hye-Jim Kim4 1,3School of Computer Science and Engineering, Lovely Professional University, Punjab, India 2Division of Research and Development, Lovely Professional University, Punjab, India 4Business Administration Research Institute, Sungshin W. University, 2 Bomun-ro 34da gil, Seongbuk-gu, Seoul, Republic of Korea Abstract Cryptography has always been a core component of security domain. Different security services such as confidentiality, integrity, availability, authentication, non-repudiation and access control, are provided by a number of cryptographic algorithms including block ciphers, stream ciphers and hash functions. Though the algorithms are public and cryptographic strength depends on the usage of the keys, the ciphertext analysis using different functions and operations used in the algorithms can lead to the path of revealing a key completely or partially. It is hard to find any survey till date which identifies different operations and functions used in cryptography. In this paper, we have categorized our survey of cryptographic functions and operations in the algorithms in three categories: block ciphers, stream ciphers and cryptanalysis attacks which are executable in different parts of the algorithms. This survey will help the budding researchers in the society of crypto for identifying different operations and functions in cryptographic algorithms. Keywords: cryptography; block; stream; cipher; plaintext; ciphertext; functions; research problems 1. Introduction Cryptography [1] in the previous time was analogous to encryption where the main task was to convert the readable message to an unreadable format.
    [Show full text]
  • Cryptanalysis of Feistel Networks with Secret Round Functions ⋆
    Cryptanalysis of Feistel Networks with Secret Round Functions ? Alex Biryukov1, Gaëtan Leurent2, and Léo Perrin3 1 [email protected], University of Luxembourg 2 [email protected], Inria, France 3 [email protected], SnT,University of Luxembourg Abstract. Generic distinguishers against Feistel Network with up to 5 rounds exist in the regular setting and up to 6 rounds in a multi-key setting. We present new cryptanalyses against Feistel Networks with 5, 6 and 7 rounds which are not simply distinguishers but actually recover completely the unknown Feistel functions. When an exclusive-or is used to combine the output of the round function with the other branch, we use the so-called yoyo game which we improved using a heuristic based on particular cycle structures. The complexity of a complete recovery is equivalent to O(22n) encryptions where n is the branch size. This attack can be used against 6- and 7-round Feistel n−1 n Networks in time respectively O(2n2 +2n) and O(2n2 +2n). However when modular addition is used, this attack does not work. In this case, we use an optimized guess-and-determine strategy to attack 5 rounds 3n=4 with complexity O(2n2 ). Our results are, to the best of our knowledge, the first recovery attacks against generic 5-, 6- and 7-round Feistel Networks. Keywords: Feistel Network, Yoyo, Generic Attack, Guess-and-determine 1 Introduction The design of block ciphers is a well researched area. An overwhelming majority of modern block ciphers fall in one of two categories: Substitution-Permutation Networks (SPN) and Feistel Networks (FN).
    [Show full text]
  • Design and Analysis of Lightweight Block Ciphers : a Focus on the Linear
    Design and Analysis of Lightweight Block Ciphers: A Focus on the Linear Layer Christof Beierle Doctoral Dissertation Faculty of Mathematics Ruhr-Universit¨atBochum December 2017 Design and Analysis of Lightweight Block Ciphers: A Focus on the Linear Layer vorgelegt von Christof Beierle Dissertation zur Erlangung des Doktorgrades der Naturwissenschaften an der Fakult¨atf¨urMathematik der Ruhr-Universit¨atBochum Dezember 2017 First reviewer: Prof. Dr. Gregor Leander Second reviewer: Prof. Dr. Alexander May Date of oral examination: February 9, 2018 Abstract Lots of cryptographic schemes are based on block ciphers. Formally, a block cipher can be defined as a family of permutations on a finite binary vector space. A majority of modern constructions is based on the alternation of a nonlinear and a linear operation. The scope of this work is to study the linear operation with regard to optimized efficiency and necessary security requirements. Our main topics are • the problem of efficiently implementing multiplication with fixed elements in finite fields of characteristic two. • a method for finding optimal alternatives for the ShiftRows operation in AES-like ciphers. • the tweakable block ciphers Skinny and Mantis. • the effect of the choice of the linear operation and the round constants with regard to the resistance against invariant attacks. • the derivation of a security argument for the block cipher Simon that does not rely on computer-aided methods. Zusammenfassung Viele kryptographische Verfahren basieren auf Blockchiffren. Formal kann eine Blockchiffre als eine Familie von Permutationen auf einem endlichen bin¨arenVek- torraum definiert werden. Eine Vielzahl moderner Konstruktionen basiert auf der wechselseitigen Anwendung von nicht-linearen und linearen Abbildungen.
    [Show full text]
  • Cryptanalysis of Ciphers and Protocols Elad Pinhas Barkan
    Cryptanalysis of Ciphers and Protocols Elad Pinhas Barkan Technion - Computer Science Department - Ph.D. Thesis PHD-2006-04 - 2006 Technion - Computer Science Department - Ph.D. Thesis PHD-2006-04 - 2006 Cryptanalysis of Ciphers and Protocols Research Thesis Submitted in partial fulfillment of the Requirements for the Degree of Doctor of Philosophy Elad Pinhas Barkan Submitted to the Senate of the Technion — Israel Institute of Technology Adar 5766 Haifa March 2006 Technion - Computer Science Department - Ph.D. Thesis PHD-2006-04 - 2006 Technion - Computer Science Department - Ph.D. Thesis PHD-2006-04 - 2006 The research thesis was done under the supervision of Prof. Eli Biham in the Faculty of Computer Science. It is my privilege to thank Eli Biham for his insightful support that made this work possible, and for bringing me up as a scientist and researcher. I especially acknowledge Eli for his respect and trust, and for providing me with a very high degree of independence. Eli found the golden path among education, rigorousness, and care. His unique ability to quickly communicate anything in a personal (and sometimes playful) way always leaves me with a smile on my face. I am thankful to Adi Shamir for our fruitful collaboration, for being highly avail- able around the clock (and around the globe), and for his patience and his wisdom. I acknowledge Nathan Keller for his wonderful and helpful curiosity, and for being an amazing brainmaker. It is a pleasure to thank my colleagues at the Technion, Orr Dunkelman and Rafi Chen, for fruitful discussions and for the wonderful time we had together.
    [Show full text]
  • Cerberus.Pdf
    (lP,IIP,U' By Gaynor Borade Greek mythology comprises a huge pantheon, extensive use of anthropomorphism and mythical creatures that ore symbotic. Cerberus, the three headed dog was believed to be the guardian of the reotm of death, or Hades. Cerberus, it was believed, prevented those who crossed the river of death, Styx, from escoping. River Styx was supposed to be the boundory belween the Underworld and Earth. Greek mythology propounded thot Hodes or ihe Underworld wos encircled nine times by River Styx and thot the rivers Phlegethon, Cocytus, Lelhe, Eridanos and Acheron converged with Styx on the 'Great Marsh'. Cerberus guorded the Great Marsh. Importance of Styx in Greek Mythotogy: Hades ond Persephone were believed to be the mortol portals in the Underworld. This reotm wos atso home to Phlegyos or guardian of the River Phlegethon, Charon or Kharon, the ferrymon, ond the living waters of Styx. Styx wos believed to have miraculous powers thot could make o person immorfol, resulting in the grove need for it to be guorded. This reolm relates to the concept of 'hel[' in Christianity and the 'Paradise losf', in the Iiterary genius of 'The Divine Comedy'. In Greek myihology, the ferrymon Charon was in charge of iransporting souls across the Styx, into the Underworld. Here, it was believed thaf the sullen were drowned in Sfyx's muddy waters. Cerberus:The Guardion Cerberus, the mythical guordian of River Styx has been immorlalized through many works of ancient Greek liferoture, ort ond orchitecture. Cerberus is easity recognizabte among the other members of the pontheon due to his three heads.
    [Show full text]
  • Statistical Cryptanalysis of Block Ciphers
    STATISTICAL CRYPTANALYSIS OF BLOCK CIPHERS THÈSE NO 3179 (2005) PRÉSENTÉE À LA FACULTÉ INFORMATIQUE ET COMMUNICATIONS Institut de systèmes de communication SECTION DES SYSTÈMES DE COMMUNICATION ÉCOLE POLYTECHNIQUE FÉDÉRALE DE LAUSANNE POUR L'OBTENTION DU GRADE DE DOCTEUR ÈS SCIENCES PAR Pascal JUNOD ingénieur informaticien dilpômé EPF de nationalité suisse et originaire de Sainte-Croix (VD) acceptée sur proposition du jury: Prof. S. Vaudenay, directeur de thèse Prof. J. Massey, rapporteur Prof. W. Meier, rapporteur Prof. S. Morgenthaler, rapporteur Prof. J. Stern, rapporteur Lausanne, EPFL 2005 to Mimi and Chlo´e Acknowledgments First of all, I would like to warmly thank my supervisor, Prof. Serge Vaude- nay, for having given to me such a wonderful opportunity to perform research in a friendly environment, and for having been the perfect supervisor that every PhD would dream of. I am also very grateful to the president of the jury, Prof. Emre Telatar, and to the reviewers Prof. em. James L. Massey, Prof. Jacques Stern, Prof. Willi Meier, and Prof. Stephan Morgenthaler for having accepted to be part of the jury and for having invested such a lot of time for reviewing this thesis. I would like to express my gratitude to all my (former and current) col- leagues at LASEC for their support and for their friendship: Gildas Avoine, Thomas Baign`eres, Nenad Buncic, Brice Canvel, Martine Corval, Matthieu Finiasz, Yi Lu, Jean Monnerat, Philippe Oechslin, and John Pliam. With- out them, the EPFL (and the crypto) would not be so fun! Without their support, trust and encouragement, the last part of this thesis, FOX, would certainly not be born: I owe to MediaCrypt AG, espe- cially to Ralf Kastmann and Richard Straub many, many, many hours of interesting work.
    [Show full text]
  • Hardware Performance Characterization of Block Cipher Structures∗
    Hardware Performance Characterization of Block Cipher Structures∗ Lu Xiao and Howard M. Heys Electrical and Computer Engineering Faculty of Engineering and Applied Science Memorial University of Newfoundland St. John's, NF, Canada A1B 3X5 fxiao, [email protected] Abstract In this paper, we present a general framework for evaluating the performance char- acteristics of block cipher structures composed of S-boxes and Maximum Distance Sep- arable (MDS) mappings. In particular, we examine nested Substitution-Permutation Networks (SPNs) and Feistel networks with round functions composed of S-boxes and MDS mappings. Within each cipher structure, many cases are considered based on two types of S-boxes (i.e., 4×4 and 8×8) and parameterized MDS mappings. In our study of each case, the hardware complexity and performance are analyzed. Cipher security, in the form of resistance to differential, linear, and Square attacks, is used to deter- mine the minimum number of rounds required for a particular parameterized structure. Because the discussed structures are similar to many existing ciphers (e.g., Rijndael, Camellia, Hierocrypt, and Anubis), the analysis provides a meaningful mechanism for seeking efficient ciphers through a wide comparison of performance, complexity, and security. 1 Introduction In product ciphers like DES [1] and Rijndael [2], the concepts of confusion and diffusion are vital to security. The Feistel network and the Substitution-Permutation Network (SPN) are two typical architectures to achieve this. In both architectures, Substitution-boxes (S- boxes) are typically used to perform substitution on small sub-blocks. An S-box is a nonlinear mapping from input bits to output bits, which meets many security requirements.
    [Show full text]
  • Constructions of Involutions Over Finite Fields
    Constructions of involutions over finite fields Dabin Zheng1 Mu Yuan1 Nian Li1 Lei Hu2 Xiangyong Zeng1 1 Hubei Key Laboratory of Applied Mathematics, Faculty of Mathematics and Statistics, Hubei University, Wuhan 430062, China 2 Institute of Information Engineering, CAS, Beijing 100093, China Abstract An involution over finite fields is a permutation polynomial whose inverse is itself. Owing to this property, involutions over finite fields have been widely used in applications such as cryptography and coding theory. As far as we know, there are not many involutions, and there isn’t a general way to construct involutions over finite fields. This paper gives a necessary and sufficient condition for the r s polynomials of the form x h(x ) ∈ Fq[x] to be involutions over the finite field Fq, where r ≥ 1 and s | (q − 1). By using this criterion we propose a general method r s to construct involutions of the form x h(x ) over Fq from given involutions over F∗ the corresponding subgroup of q . Then, many classes of explicit involutions of r s the form x h(x ) over Fq are obtained. Key Words permutation polynomial, involution, block cipher 1 Introduction F F∗ Let q be a power of a prime. Let q be a finite field with q elements and q de- note its multiplicative group. A polynomial f(x) ∈ Fq[x] is called a permutation polynomial if its associated polynomial mapping f : c 7→ f(c) from Fq to itself is a bijection. Moreover, f is called an involution if the compositional inverse of f is itself.
    [Show full text]
  • Pharaoh's Scribe
    June 2020 Pharaoh’s Scribe The Newsletter of the Pharaoh Hound Club of America In this issue: Page 2 President’s Message Page 6 New Members Page 9 AKC News Page 15 CODE of ETHICS Page 23 & 28 AKC Titles Page 24 Points Schedule Page 31 Memorable Page 33 Financial Report Page 35 Candids Her courage was her crown, and she wore it like a Queen. The PHARAOHS SCRIBE is the official newsletter of the Pharaoh Hound Club of America, Inc. and is published four (4) times a year on a quarterly basis. The opinions within are those of the writers and do not necessarily represent the views of the PHCA. This publication is available to members in good standing of the Pharaoh Hound Club of America only. Pharaoh Scribe June 2020 President’s Message Hello All: I hope you and yours are doing well. As many of you know, there were some lengthy discussions regarding the 2020 PHCA National and Eastern Regional Specialties. The conversation was at times heated and not always nice, productive or constructive. It did, however, provide us - and by that I mean the collective "us" - both the Board of Directors and the membership - with some lessons that we can take away from the entire unfortunate situation. First of all, we shouldn't ALWAYS assume we know the motives behind the other side in a disagreement. If uncertain, we should ask those questions that are nagging at us or that we find suspect, instead of attributing the worst possible motive and running with it. Secondly, we should ALL remain open to communications - once one side assumes a position or draws the proverbial "line in the sand" any effective opportunity for further communication or compromise has been lost.
    [Show full text]