The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/libsodium/test/default/box_seed.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 
    2 #define TEST_NAME "box_seed"
    3 #include "cmptest.h"
    4 
    5 static unsigned char seed[32] = { 0x77, 0x07, 0x6d, 0x0a, 0x73, 0x18, 0xa5,
    6                                   0x7d, 0x3c, 0x16, 0xc1, 0x72, 0x51, 0xb2,
    7                                   0x66, 0x45, 0xdf, 0x4c, 0x2f, 0x87, 0xeb,
    8                                   0xc0, 0x99, 0x2a, 0xb1, 0x77, 0xfb, 0xa5,
    9                                   0x1d, 0xb9, 0x2c, 0x2a };
   10 
   11 int
   12 main(void)
   13 {
   14     int           i;
   15     unsigned char sk[32];
   16     unsigned char pk[32];
   17 
   18     crypto_box_seed_keypair(pk, sk, seed);
   19     for (i = 0; i < 32; ++i) {
   20         printf(",0x%02x", (unsigned int) pk[i]);
   21         if (i % 8 == 7)
   22             printf("\n");
   23     }
   24     for (i = 0; i < 32; ++i) {
   25         printf(",0x%02x", (unsigned int) sk[i]);
   26         if (i % 8 == 7)
   27             printf("\n");
   28     }
   29     return 0;
   30 }

Cache object: 50ff50bb162eacb431f414ae52db8928


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.