Add OID cross reference table.
[openssl.git] / crypto / objects / obj_xref.c
1 /* crypto/objects/obj_xref.c */
2 /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
3  * project 2006.
4  */
5 /* ====================================================================
6  * Copyright (c) 2006 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer. 
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    licensing@OpenSSL.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  *
53  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com).
56  *
57  */
58
59 #include <openssl/objects.h>
60 #include "obj_xref.h"
61
62 static int cmp_sig(const nid_triple *a, const nid_triple *b)
63         {
64         return **a - **b;
65         }
66
67 static int cmp_sigx(const nid_triple **a, const nid_triple **b)
68         {
69         int ret;
70         ret = (**a)[1] - (**b)[1];
71         if (ret)
72                 return ret;
73         return (**a)[2] - (**b)[2];
74         }
75
76
77 int OBJ_find_sigid_algs(int signid, int *pdig_nid, int *ppkey_nid)
78         {
79         nid_triple tmp, *rv;
80         tmp[0] = signid;
81
82         rv = (nid_triple *)OBJ_bsearch((char *)&tmp,
83                                 (char *)sigoid_srt,
84                                 sizeof(sigoid_srt) / sizeof(nid_triple),
85                                 sizeof(nid_triple),
86                                 (int (*)(const void *, const void *))cmp_sig);
87         if (rv == NULL)
88                 return 0;
89         *pdig_nid = (*rv)[1];
90         *ppkey_nid = (*rv)[2];
91         return 1;
92         }
93
94 int OBJ_find_sigid_by_algs(int *psignid, int dig_nid, int pkey_nid)
95         {
96         nid_triple tmp, *t=&tmp, **rv;
97         tmp[1] = dig_nid;
98         tmp[2] = pkey_nid;
99
100         rv = (nid_triple **)OBJ_bsearch((char *)&t,
101                                 (char *)sigoid_srt_xref,
102                                 sizeof(sigoid_srt_xref) / sizeof(nid_triple *),
103                                 sizeof(nid_triple *),
104                                 (int (*)(const void *, const void *))cmp_sigx);
105         if (rv == NULL)
106                 return 0;
107         *psignid = (**rv)[0];
108         return 1;
109         }
110
111 #ifdef OBJ_XREF_TEST
112
113 main()
114         {
115         int n1, n2, n3;
116
117         int i, rv;
118
119         for (i = 0; i < sizeof(sigoid_srt) / sizeof(nid_triple); i++)
120                 {
121                 n1 = sigoid_srt[i][0];
122                 rv = OBJ_find_sigid_algs(n1, &n2, &n3);
123                 printf("Forward: %d, %s %s %s\n", rv,
124                         OBJ_nid2ln(n1), OBJ_nid2ln(n2), OBJ_nid2ln(n3));
125                 n1=0;
126                 rv = OBJ_find_sigid_by_algs(&n1, n2, n3);
127                 printf("Reverse: %d, %s %s %s\n", rv,
128                         OBJ_nid2ln(n1), OBJ_nid2ln(n2), OBJ_nid2ln(n3));
129                 }
130         }
131         
132 #endif