xref: /freebsd/crypto/openssl/demos/pkey/dsa.inc (revision e0c4386e7e71d93b0edc0c8fa156263fc4a8b0b6)
1*e0c4386eSCy Schubert/*-
2*e0c4386eSCy Schubert * Copyright 2022 The OpenSSL Project Authors. All Rights Reserved.
3*e0c4386eSCy Schubert *
4*e0c4386eSCy Schubert * Licensed under the Apache License 2.0 (the "License").  You may not use
5*e0c4386eSCy Schubert * this file except in compliance with the License.  You can obtain a copy
6*e0c4386eSCy Schubert * in the file LICENSE in the source distribution or at
7*e0c4386eSCy Schubert * https://www.openssl.org/source/license.html
8*e0c4386eSCy Schubert */
9*e0c4386eSCy Schubert
10*e0c4386eSCy Schubert#include <openssl/pem.h>
11*e0c4386eSCy Schubert#include <openssl/core_names.h>
12*e0c4386eSCy Schubert
13*e0c4386eSCy Schubert/* Raw DSA params for P, Q and G */
14*e0c4386eSCy Schubertstatic const unsigned char dsa_p[] = {
15*e0c4386eSCy Schubert    0xa2, 0x9b, 0x88, 0x72, 0xce, 0x8b, 0x84, 0x23,
16*e0c4386eSCy Schubert    0xb7, 0xd5, 0xd2, 0x1d, 0x4b, 0x02, 0xf5, 0x7e,
17*e0c4386eSCy Schubert    0x03, 0xe9, 0xe6, 0xb8, 0xa2, 0x58, 0xdc, 0x16,
18*e0c4386eSCy Schubert    0x61, 0x1b, 0xa0, 0x98, 0xab, 0x54, 0x34, 0x15,
19*e0c4386eSCy Schubert    0xe4, 0x15, 0xf1, 0x56, 0x99, 0x7a, 0x3e, 0xe2,
20*e0c4386eSCy Schubert    0x36, 0x65, 0x8f, 0xa0, 0x93, 0x26, 0x0d, 0xe3,
21*e0c4386eSCy Schubert    0xad, 0x42, 0x2e, 0x05, 0xe0, 0x46, 0xf9, 0xec,
22*e0c4386eSCy Schubert    0x29, 0x16, 0x1a, 0x37, 0x5f, 0x0e, 0xb4, 0xef,
23*e0c4386eSCy Schubert    0xfc, 0xef, 0x58, 0x28, 0x5c, 0x5d, 0x39, 0xed,
24*e0c4386eSCy Schubert    0x42, 0x5d, 0x7a, 0x62, 0xca, 0x12, 0x89, 0x6c,
25*e0c4386eSCy Schubert    0x4a, 0x92, 0xcb, 0x19, 0x46, 0xf2, 0x95, 0x2a,
26*e0c4386eSCy Schubert    0x48, 0x13, 0x3f, 0x07, 0xda, 0x36, 0x4d, 0x1b,
27*e0c4386eSCy Schubert    0xdf, 0x6b, 0x0f, 0x71, 0x39, 0x98, 0x3e, 0x69,
28*e0c4386eSCy Schubert    0x3c, 0x80, 0x05, 0x9b, 0x0e, 0xac, 0xd1, 0x47,
29*e0c4386eSCy Schubert    0x9b, 0xa9, 0xf2, 0x85, 0x77, 0x54, 0xed, 0xe7,
30*e0c4386eSCy Schubert    0x5f, 0x11, 0x2b, 0x07, 0xeb, 0xbf, 0x35, 0x34,
31*e0c4386eSCy Schubert    0x8b, 0xbf, 0x3e, 0x01, 0xe0, 0x2f, 0x2d, 0x47,
32*e0c4386eSCy Schubert    0x3d, 0xe3, 0x94, 0x53, 0xf9, 0x9d, 0xd2, 0x36,
33*e0c4386eSCy Schubert    0x75, 0x41, 0xca, 0xca, 0x3b, 0xa0, 0x11, 0x66,
34*e0c4386eSCy Schubert    0x34, 0x3d, 0x7b, 0x5b, 0x58, 0xa3, 0x7b, 0xd1,
35*e0c4386eSCy Schubert    0xb7, 0x52, 0x1d, 0xb2, 0xf1, 0x3b, 0x86, 0x70,
36*e0c4386eSCy Schubert    0x71, 0x32, 0xfe, 0x09, 0xf4, 0xcd, 0x09, 0xdc,
37*e0c4386eSCy Schubert    0x16, 0x18, 0xfa, 0x34, 0x01, 0xeb, 0xf9, 0xcc,
38*e0c4386eSCy Schubert    0x7b, 0x19, 0xfa, 0x94, 0xaa, 0x47, 0x20, 0x88,
39*e0c4386eSCy Schubert    0x13, 0x3d, 0x6c, 0xb2, 0xd3, 0x5c, 0x11, 0x79,
40*e0c4386eSCy Schubert    0xc8, 0xc8, 0xff, 0x36, 0x87, 0x58, 0xd5, 0x07,
41*e0c4386eSCy Schubert    0xd9, 0xf9, 0xa1, 0x7d, 0x46, 0xc1, 0x10, 0xfe,
42*e0c4386eSCy Schubert    0x31, 0x44, 0xce, 0x9b, 0x02, 0x2b, 0x42, 0xe4,
43*e0c4386eSCy Schubert    0x19, 0xeb, 0x4f, 0x53, 0x88, 0x61, 0x3b, 0xfc,
44*e0c4386eSCy Schubert    0x3e, 0x26, 0x24, 0x1a, 0x43, 0x2e, 0x87, 0x06,
45*e0c4386eSCy Schubert    0xbc, 0x58, 0xef, 0x76, 0x11, 0x72, 0x78, 0xde,
46*e0c4386eSCy Schubert    0xab, 0x6c, 0xf6, 0x92, 0x61, 0x82, 0x91, 0xb7
47*e0c4386eSCy Schubert};
48*e0c4386eSCy Schubert
49*e0c4386eSCy Schubertstatic const unsigned char dsa_q[] = {
50*e0c4386eSCy Schubert    0xa3, 0xbf, 0xd9, 0xab, 0x78, 0x84, 0x79, 0x4e,
51*e0c4386eSCy Schubert    0x38, 0x34, 0x50, 0xd5, 0x89, 0x1d, 0xc1, 0x8b,
52*e0c4386eSCy Schubert    0x65, 0x15, 0x7b, 0xdc, 0xfc, 0xda, 0xc5, 0x15,
53*e0c4386eSCy Schubert    0x18, 0x90, 0x28, 0x67
54*e0c4386eSCy Schubert};
55*e0c4386eSCy Schubert
56*e0c4386eSCy Schubertstatic const unsigned char dsa_g[] = {
57*e0c4386eSCy Schubert    0x68, 0x19, 0x27, 0x88, 0x69, 0xc7, 0xfd, 0x3d,
58*e0c4386eSCy Schubert    0x2d, 0x7b, 0x77, 0xf7, 0x7e, 0x81, 0x50, 0xd9,
59*e0c4386eSCy Schubert    0xad, 0x43, 0x3b, 0xea, 0x3b, 0xa8, 0x5e, 0xfc,
60*e0c4386eSCy Schubert    0x80, 0x41, 0x5a, 0xa3, 0x54, 0x5f, 0x78, 0xf7,
61*e0c4386eSCy Schubert    0x22, 0x96, 0xf0, 0x6c, 0xb1, 0x9c, 0xed, 0xa0,
62*e0c4386eSCy Schubert    0x6c, 0x94, 0xb0, 0x55, 0x1c, 0xfe, 0x6e, 0x6f,
63*e0c4386eSCy Schubert    0x86, 0x3e, 0x31, 0xd1, 0xde, 0x6e, 0xed, 0x7d,
64*e0c4386eSCy Schubert    0xab, 0x8b, 0x0c, 0x9d, 0xf2, 0x31, 0xe0, 0x84,
65*e0c4386eSCy Schubert    0x34, 0xd1, 0x18, 0x4f, 0x91, 0xd0, 0x33, 0x69,
66*e0c4386eSCy Schubert    0x6b, 0xb3, 0x82, 0xf8, 0x45, 0x5e, 0x98, 0x88,
67*e0c4386eSCy Schubert    0xf5, 0xd3, 0x1d, 0x47, 0x84, 0xec, 0x40, 0x12,
68*e0c4386eSCy Schubert    0x02, 0x46, 0xf4, 0xbe, 0xa6, 0x17, 0x94, 0xbb,
69*e0c4386eSCy Schubert    0xa5, 0x86, 0x6f, 0x09, 0x74, 0x64, 0x63, 0xbd,
70*e0c4386eSCy Schubert    0xf8, 0xe9, 0xe1, 0x08, 0xcd, 0x95, 0x29, 0xc3,
71*e0c4386eSCy Schubert    0xd0, 0xf6, 0xdf, 0x80, 0x31, 0x6e, 0x2e, 0x70,
72*e0c4386eSCy Schubert    0xaa, 0xeb, 0x1b, 0x26, 0xcd, 0xb8, 0xad, 0x97,
73*e0c4386eSCy Schubert    0xbc, 0x3d, 0x28, 0x7e, 0x0b, 0x8d, 0x61, 0x6c,
74*e0c4386eSCy Schubert    0x42, 0xe6, 0x5b, 0x87, 0xdb, 0x20, 0xde, 0xb7,
75*e0c4386eSCy Schubert    0x00, 0x5b, 0xc4, 0x16, 0x74, 0x7a, 0x64, 0x70,
76*e0c4386eSCy Schubert    0x14, 0x7a, 0x68, 0xa7, 0x82, 0x03, 0x88, 0xeb,
77*e0c4386eSCy Schubert    0xf4, 0x4d, 0x52, 0xe0, 0x62, 0x8a, 0xf9, 0xcf,
78*e0c4386eSCy Schubert    0x1b, 0x71, 0x66, 0xd0, 0x34, 0x65, 0xf3, 0x5a,
79*e0c4386eSCy Schubert    0xcc, 0x31, 0xb6, 0x11, 0x0c, 0x43, 0xda, 0xbc,
80*e0c4386eSCy Schubert    0x7c, 0x5d, 0x59, 0x1e, 0x67, 0x1e, 0xaf, 0x7c,
81*e0c4386eSCy Schubert    0x25, 0x2c, 0x1c, 0x14, 0x53, 0x36, 0xa1, 0xa4,
82*e0c4386eSCy Schubert    0xdd, 0xf1, 0x32, 0x44, 0xd5, 0x5e, 0x83, 0x56,
83*e0c4386eSCy Schubert    0x80, 0xca, 0xb2, 0x53, 0x3b, 0x82, 0xdf, 0x2e,
84*e0c4386eSCy Schubert    0xfe, 0x55, 0xec, 0x18, 0xc1, 0xe6, 0xcd, 0x00,
85*e0c4386eSCy Schubert    0x7b, 0xb0, 0x89, 0x75, 0x8b, 0xb1, 0x7c, 0x2c,
86*e0c4386eSCy Schubert    0xbe, 0x14, 0x44, 0x1b, 0xd0, 0x93, 0xae, 0x66,
87*e0c4386eSCy Schubert    0xe5, 0x97, 0x6d, 0x53, 0x73, 0x3f, 0x4f, 0xa3,
88*e0c4386eSCy Schubert    0x26, 0x97, 0x01, 0xd3, 0x1d, 0x23, 0xd4, 0x67
89*e0c4386eSCy Schubert};
90*e0c4386eSCy Schubert
91*e0c4386eSCy Schubert/* Helper function to retrieve and print a key BIGNUM field */
92*e0c4386eSCy Schubertstatic void print_bn(BIO *bio, const EVP_PKEY *pkey, const char *name)
93*e0c4386eSCy Schubert{
94*e0c4386eSCy Schubert    BIGNUM *bn = NULL;
95*e0c4386eSCy Schubert
96*e0c4386eSCy Schubert    if (EVP_PKEY_get_bn_param(pkey, name, &bn) == 0)
97*e0c4386eSCy Schubert        return;
98*e0c4386eSCy Schubert
99*e0c4386eSCy Schubert    BIO_printf(bio, "  %s = 0x", name);
100*e0c4386eSCy Schubert    BN_print(bio, bn);
101*e0c4386eSCy Schubert    BIO_printf(bio, "\n");
102*e0c4386eSCy Schubert    BN_clear_free(bn);
103*e0c4386eSCy Schubert}
104*e0c4386eSCy Schubert
105*e0c4386eSCy Schubert/*
106*e0c4386eSCy Schubert * Print DSA key info
107*e0c4386eSCy Schubert *
108*e0c4386eSCy Schubert * This method shows how to extract DSA data from an EVP_PKEY.
109*e0c4386eSCy Schubert * There are simpler ways to print using EVP_PKEY_print_XXXX().
110*e0c4386eSCy Schubert */
111*e0c4386eSCy Schubertstatic int dsa_print_key(const EVP_PKEY *pkey, int keypair,
112*e0c4386eSCy Schubert                         OSSL_LIB_CTX *libctx, const char *propq)
113*e0c4386eSCy Schubert{
114*e0c4386eSCy Schubert
115*e0c4386eSCy Schubert    int rv = 0, gindex, counter;
116*e0c4386eSCy Schubert    BIO *bio = BIO_new_fp(stdout, BIO_NOCLOSE);
117*e0c4386eSCy Schubert    unsigned char seed[2048];
118*e0c4386eSCy Schubert    size_t seedlen;
119*e0c4386eSCy Schubert
120*e0c4386eSCy Schubert    if (bio == NULL)
121*e0c4386eSCy Schubert        return 0;
122*e0c4386eSCy Schubert
123*e0c4386eSCy Schubert    /* Output hexadecimal representations of the BIGNUM objects. */
124*e0c4386eSCy Schubert    BIO_printf(bio, "\nPublic values:\n");
125*e0c4386eSCy Schubert    print_bn(bio, pkey, OSSL_PKEY_PARAM_FFC_P);
126*e0c4386eSCy Schubert    print_bn(bio, pkey, OSSL_PKEY_PARAM_FFC_Q);
127*e0c4386eSCy Schubert    print_bn(bio, pkey, OSSL_PKEY_PARAM_FFC_G);
128*e0c4386eSCy Schubert
129*e0c4386eSCy Schubert    if (EVP_PKEY_get_octet_string_param(pkey, OSSL_PKEY_PARAM_FFC_SEED, seed,
130*e0c4386eSCy Schubert                                        sizeof(seed), &seedlen) > 0) {
131*e0c4386eSCy Schubert        BIO_printf(bio, "  %s\n", OSSL_PKEY_PARAM_FFC_SEED);
132*e0c4386eSCy Schubert        BIO_dump(bio, seed, seedlen);
133*e0c4386eSCy Schubert    }
134*e0c4386eSCy Schubert    if (EVP_PKEY_get_int_param(pkey, OSSL_PKEY_PARAM_FFC_GINDEX, &gindex) > 0) {
135*e0c4386eSCy Schubert        if (gindex != -1)
136*e0c4386eSCy Schubert            BIO_printf(bio, "  %s = %d\n", OSSL_PKEY_PARAM_FFC_GINDEX, gindex);
137*e0c4386eSCy Schubert    }
138*e0c4386eSCy Schubert    if (EVP_PKEY_get_int_param(pkey, OSSL_PKEY_PARAM_FFC_PCOUNTER, &counter) > 0) {
139*e0c4386eSCy Schubert        if (counter != -1)
140*e0c4386eSCy Schubert            BIO_printf(bio, "  %s = %d\n", OSSL_PKEY_PARAM_FFC_PCOUNTER, counter);
141*e0c4386eSCy Schubert    }
142*e0c4386eSCy Schubert
143*e0c4386eSCy Schubert    if (keypair) {
144*e0c4386eSCy Schubert        fprintf(stdout, "\nPrivate value:\n");
145*e0c4386eSCy Schubert        print_bn(bio, pkey, OSSL_PKEY_PARAM_PRIV_KEY);
146*e0c4386eSCy Schubert
147*e0c4386eSCy Schubert        /* Output a PEM encoding of the public key. */
148*e0c4386eSCy Schubert        if (PEM_write_bio_PUBKEY_ex(bio, pkey, libctx, propq) == 0) {
149*e0c4386eSCy Schubert            fprintf(stderr, "Failed to output PEM-encoded public key\n");
150*e0c4386eSCy Schubert            goto cleanup;
151*e0c4386eSCy Schubert        }
152*e0c4386eSCy Schubert
153*e0c4386eSCy Schubert        /*
154*e0c4386eSCy Schubert         * Output a PEM encoding of the private key. Please note that this output is
155*e0c4386eSCy Schubert         * not encrypted. You may wish to use the arguments to specify encryption of
156*e0c4386eSCy Schubert         * the key if you are storing it on disk. See PEM_write_bio_PrivateKey_ex(3).
157*e0c4386eSCy Schubert         */
158*e0c4386eSCy Schubert        if (PEM_write_bio_PrivateKey_ex(bio, pkey, NULL, NULL, 0, NULL, NULL, libctx, propq) == 0) {
159*e0c4386eSCy Schubert            fprintf(stderr, "Failed to output PEM-encoded private key\n");
160*e0c4386eSCy Schubert            goto cleanup;
161*e0c4386eSCy Schubert        }
162*e0c4386eSCy Schubert    } else {
163*e0c4386eSCy Schubert        if (PEM_write_bio_Parameters(bio, pkey) == 0) {
164*e0c4386eSCy Schubert            fprintf(stderr, "Failed to output PEM-encoded params\n");
165*e0c4386eSCy Schubert            goto cleanup;
166*e0c4386eSCy Schubert        }
167*e0c4386eSCy Schubert    }
168*e0c4386eSCy Schubert    rv = 1;
169*e0c4386eSCy Schubertcleanup:
170*e0c4386eSCy Schubert    BIO_free(bio);
171*e0c4386eSCy Schubert    return rv;
172*e0c4386eSCy Schubert}
173