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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
#! /bin/sh -e
dhparam_to_c() {
local bits
local get_p=0
local line
local nl="
"
local p
local i=0
while read -r line; do
case "$line" in
*"DH Parameters: "*)
bits=${line#*DH Parameters: (}
bits=${bits% bit)}
continue
;;
"P:"|"prime:")
get_p=1
continue
;;
"G: "*|"generator: "*)
g=${line#*(}
g=${g%)}
g=$(printf "0x%.2X" "$g")
continue
;;
esac
if [ "$get_p" = 1 ]; then
IFS=":"
for x in $line; do
[ -z "$p" ] && [ "$x" = "00" ] && continue
[ $i -ge 10 ] && i=0
[ $i -eq 0 ] && p="$p$nl "
x=0x$x
p=$(printf "%s 0x%.2X," "$p" "$x")
i=$((i + 1))
done
unset IFS
fi
done <<EOF
$(openssl dhparam -in "$1" -text -noout)
EOF
p=${p%,}
cat <<EOF
DH *get_dh${bits}(void)
{
static unsigned char dhp_${bits}[] = {$p
};
static unsigned char dhg_${bits}[] = {
$g
};
DH *dh = DH_new();
BIGNUM *p, *g;
if (dh == NULL)
return NULL;
p = BN_bin2bn(dhp_${bits}, sizeof(dhp_${bits}), NULL);
g = BN_bin2bn(dhg_${bits}, sizeof(dhg_${bits}), NULL);
if (p == NULL || g == NULL
|| !my_DH_set0_pqg(dh, p, NULL, g)) {
DH_free(dh);
BN_free(p);
BN_free(g);
return NULL;
}
return dh;
}
EOF
}
cat <<'EOF'
/* Generated automatically; do not modify! -*- buffer-read-only: t -*-
*
* If you do need to regenerate this file, run "make generate-dhparams-c". */
#include <config.h>
#include "lib/dhparams.h"
#include "openvswitch/util.h"
#if OPENSSL_VERSION_NUMBER < 0x3000000fL
static int
my_DH_set0_pqg(DH *dh, BIGNUM *p, const BIGNUM **q OVS_UNUSED, BIGNUM *g)
{
ovs_assert(q == NULL);
return DH_set0_pqg(dh, p, NULL, g);
}
EOF
dhparam_to_c lib/dh2048.pem
dhparam_to_c lib/dh4096.pem
echo "#endif"
|