root/lib/fingerprint.c

/* [<][>][^][v][top][bottom][index][help] */
     1 /* Placeholder fingerprint for Emacs
     2 
     3 Copyright 2019-2023 Free Software Foundation, Inc.
     4 
     5 This file is part of GNU Emacs.
     6 
     7 GNU Emacs is free software: you can redistribute it and/or modify
     8 it under the terms of the GNU General Public License as published by
     9 the Free Software Foundation, either version 3 of the License, or (at
    10 your option) any later version.
    11 
    12 GNU Emacs is distributed in the hope that it will be useful,
    13 but WITHOUT ANY WARRANTY; without even the implied warranty of
    14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    15 GNU General Public License for more details.
    16 
    17 You should have received a copy of the GNU General Public License
    18 along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
    19 
    20 #include <config.h>
    21 
    22 #include "fingerprint.h"
    23 
    24 /* This random fingerprint was generated by the shell command:
    25 
    26    shuf -i 0-255 -n 32 -r | awk '{printf "   0x%.02X,\n", $0}'
    27 
    28    In the final Emacs executable, this random fingerprint is replaced
    29    by a fingerprint of the temporary Emacs executable that was built
    30    along the way.  */
    31 
    32 volatile unsigned char fingerprint[] =
    33   {
    34    0xDE,
    35    0x86,
    36    0xBB,
    37    0x99,
    38    0xFF,
    39    0xF5,
    40    0x46,
    41    0x9A,
    42    0x9E,
    43    0x3F,
    44    0x9F,
    45    0x5D,
    46    0x9A,
    47    0xDF,
    48    0xF0,
    49    0x91,
    50    0xBD,
    51    0xCD,
    52    0xC1,
    53    0xE8,
    54    0x0C,
    55    0x16,
    56    0x1E,
    57    0xAF,
    58    0xB8,
    59    0x6C,
    60    0xE2,
    61    0x2B,
    62    0xB1,
    63    0x24,
    64    0xCE,
    65    0xB0,
    66   };

/* [<][>][^][v][top][bottom][index][help] */