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
|
/*
* NSS boilerplate stuff, for libreswan.
*
* Copyright (C) 2016,2020 Andrew Cagney <cagney@gnu.org>
* Copyright (C) 2018 Sahana Prasad <sahana.prasad07@gmail.com>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <https://www.gnu.org/licenses/gpl2.txt>.
*
* This program 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 General Public License
* for more details.
*/
#ifndef CKAID_H
#define CKAID_H
#include <stdbool.h> /* for bool */
#include <stdint.h> /* for uint8_t */
#include <secitem.h> /* for SECItem */
#include <stddef.h> /* for size_t */
#include "err.h"
#include "chunk.h"
struct jambuf;
/*
* For rationale behind *_t? Blame chunk_t.
*
* Field names are so that it is chunk_t like.
*
* Sane backend uses SHA1 (or eventually SHA2) to generate the CKAID.
* However, if a certificate has SubjectKeyIdentifier then that value
* is used and it can be anything (even an ASCII string). Ulgh.
*
* NSS's certutil command has an internal and hard-wired upper limit
* of 40 bytes, hence that value here.
*
* XXX: should CKAID go back to being dynamic?
*/
#define CKAID_SIZE 40
typedef struct {
size_t len;
uint8_t ptr[CKAID_SIZE];
} ckaid_t;
bool ckaid_starts_with(const ckaid_t *ckaid, const char *start);
err_t string_to_ckaid(const char *string, ckaid_t *ckaid);
/* raw bytes in lower-case hex */
typedef struct {
char buf[CKAID_SIZE * 2 + 1/*nul*/ + 1/*canary*/];
} ckaid_buf;
const char *str_ckaid(const ckaid_t *ckaid, ckaid_buf *buf);
size_t jam_ckaid(struct jambuf *buf, const ckaid_t *ckaid);
bool ckaid_eq_nss(const ckaid_t *l, const SECItem *r);
ckaid_t ckaid_from_secitem(const SECItem *const nss_ckaid);
SECItem same_ckaid_as_secitem(const ckaid_t *ciaid);
#endif
|