aboutsummaryrefslogtreecommitdiff
path: root/src/reclaim/test_did_helper.c
blob: 873cb85cf1dfc664a0d4d2afbcd5c62efbfe92b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
   This file is part of GNUnet
   Copyright (C) 2010-2015 GNUnet e.V.

   GNUnet is free software: you can redistribute it and/or modify it
   under the terms of the GNU Affero General Public License as published
   by the Free Software Foundation, either version 3 of the License,
   or (at your option) any later version.

   GNUnet is distributed in the hope that it will be useful, but
   WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Affero General Public License for more details.

   You should have received a copy of the GNU Affero General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.

   SPDX-License-Identifier: AGPL3.0-or-later
 */

/**
 * @file reclaim/test_did_helper.c
 * @brief Unit tests for the helper library for DID related functions
 * @author Tristan Schwieren
 */

#include "platform.h"
#include "gnunet_util_lib.h"
#include "gnunet_namestore_service.h"
#include "gnunet_gns_service.h"
#include "gnunet_gnsrecord_lib.h"
#include "did_helper.h"

static const char test_privkey[32] = {
  0x9b, 0x93, 0x7b, 0x81, 0x32, 0x2d, 0x81, 0x6c,
  0xfa, 0xb9, 0xd5, 0xa3, 0xba, 0xac, 0xc9, 0xb2,
  0xa5, 0xfe, 0xbe, 0x4b, 0x14, 0x9f, 0x12, 0x6b,
  0x36, 0x30, 0xf9, 0x3a, 0x29, 0x52, 0x70, 0x17
};

static const char *test_did = "did:reclaim:000G0509BYD1MPAXVSTNV0KRD1JAT0YZMPJFQNM869B66S72PSF17K4Y8G";

static struct GNUNET_IDENTITY_PrivateKey skey;
static struct GNUNET_IDENTITY_PublicKey pkey;

// TODO: Create a did manual from private key / independet of implementation
void
test_GNUNET_DID_pkey_to_did ()
{
  char *str_did;
  str_did = GNUNET_DID_pkey_to_did(&pkey);
  GNUNET_assert(strcmp(test_did, str_did) == 0);
}

int
test_GNUNET_DID_did_to_pkey ();

int
test_GNUNET_DID_key_covert_multibase_base64_to_gnunet ();

int
test_GNUNET_DID_key_covert_gnunet_to_multibase_base64 ();

int
main ()
{
  skey.type = htonl(GNUNET_IDENTITY_TYPE_EDDSA);
  memcpy (&(skey.eddsa_key), test_privkey, sizeof(struct GNUNET_CRYPTO_EddsaPrivateKey));
  GNUNET_IDENTITY_key_get_public (&skey, &pkey);

  test_GNUNET_DID_pkey_to_did();
  return 0;
}