-rw-r--r-- 1738 libmceliece-20240812/command/mceliece460896-dec.c raw
/* WARNING: auto-generated (by autogen/cli); do not edit */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include "mceliece.h" /* -lmceliece */
#include "limits.inc"
static unsigned char sk[mceliece460896_SECRETKEYBYTES];
static unsigned char c[mceliece460896_CIPHERTEXTBYTES];
static unsigned char k[mceliece460896_BYTES];
static void die_temp(const char *why,const char *why2)
{
  if (why2)
    fprintf(stderr,"mceliece460896-dec: fatal: %s: %s\n",why,why2);
  else
    fprintf(stderr,"mceliece460896-dec: fatal: %s\n",why);
  exit(111);
}
int main()
{
  FILE *skfile;
  FILE *kfile;
  limits();
  skfile = fdopen(8,"r");
  if (!skfile) {
    fprintf(stderr,"mceliece460896-dec: usage: mceliece460896-dec 7>sessionkey <ciphertext 8<secretkey\n");
    die_temp("fdopen 8 failed",strerror(errno));
  }
  kfile = fdopen(7,"w");
  if (!kfile) {
    fprintf(stderr,"mceliece460896-dec: usage: mceliece460896-dec 7>sessionkey <ciphertext 8<secretkey\n");
    die_temp("fdopen 7 failed",strerror(errno));
  }
  if (fread(sk,1,sizeof sk,skfile) < sizeof sk) {
    if (ferror(skfile))
      die_temp("read secretkey failed",strerror(errno));
    die_temp("read secretkey failed","end of file");
  }
  fclose(skfile);
  if (fread(c,1,sizeof c,stdin) < sizeof c) {
    if (ferror(stdin))
      die_temp("read ciphertext failed",strerror(errno));
    die_temp("read ciphertext failed","end of file");
  }
  fclose(stdin);
  if (mceliece460896_dec(k,c,sk)) die_temp("decapsulation failed",0);
  if (fwrite(k,1,sizeof k,kfile) < sizeof k)
    die_temp("write sessionkey failed",strerror(errno));
  if (fflush(kfile))
    die_temp("write sessionkey failed",strerror(errno));
  fclose(kfile);
  return 0;
}