Standard preamble:
========================================================================
..
.... Set up some character translations and predefined strings. \*(-- will
give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
double quote, and \*(R" will give a right double quote. \*(C+ will
give a nicer C++. Capital omega is used to do unbreakable dashes and
therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
nothing in troff, for use with C<>.
.tr \(*W- . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\}
Escape single quotes in literal strings from groff's Unicode transform.
If the F register is >0, we'll generate index entries on stderr for
titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
entries marked with X<> in POD. Of course, you'll have to process the
output yourself in some meaningful fashion.
Avoid warning from groff about undefined register 'F'.
.. .nr rF 0 . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF Fear. Run. Save yourself. No user-serviceable parts.
. \" fudge factors for nroff and troff . ds #H 0 . ds #V .8m . ds #F .3m . ds #[ \f1 . ds #] .\} . ds #H ((1u-(\\\\n(.fu%2u))*.13m) . ds #V .6m . ds #F 0 . ds #[ \& . ds #] \& .\} . \" simple accents for nroff and troff . ds ' \& . ds ` \& . ds ^ \& . ds , \& . ds ~ ~ . ds / .\} . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' .\} . \" troff and (daisy-wheel) nroff accents . \" corrections for vroff . \" for low resolution devices (crt and lpr) \{\ . ds : e . ds 8 ss . ds o a . ds d- d\h'-1'\(ga . ds D- D\h'-1'\(hy . ds th \o'bp' . ds Th \o'LP' . ds ae ae . ds Ae AE .\} ========================================================================
Title "ASN1_ITEM_SIGN 3ossl"
way too many mistakes in technical documents.
\fBASN1_item_sign() is similar to ASN1_item_sign_ex() but uses default values of \s-1NULL\s0 for the id, libctx and propq.
\fBASN1_item_sign_ctx() is similar to ASN1_item_sign() but uses the parameters contained in digest context ctx.
\fBASN1_item_verify_ex() is used to verify the signature signature of internal data data using the public key pkey and algorithm identifier alg. The data that is verified is formed by taking the data object in data and converting it to der format using the \s-1ASN.1\s0 structure it. The \s-1OSSL_LIB_CTX\s0 specified in libctx and the property query string specified in props are used when searching for algorithms in providers. The optional parameter id can be \s-1NULL,\s0 but can be set for special key types. See EVP_PKEY_CTX_set1_id() for further info.
\fBASN1_item_verify() is similar to ASN1_item_verify_ex() but uses default values of \s-1NULL\s0 for the id, libctx and propq.
\fBASN1_item_verify_ctx() is similar to ASN1_item_verify() but uses the parameters contained in digest context ctx.
All verify functions return 1 if the signature is valid and 0 if the signature check fails. If the signature could not be checked at all because it was ill-formed or some other error occurred then -1 is returned.
.Vb 2 #include <openssl/x509.h> #include <openssl/asn1t.h> \& /* An object used to store the ASN1 data fields that will be signed */ typedef struct MySignInfoObject_st { ASN1_INTEGER *version; X509_ALGOR sig_alg; } MySignInfoObject; \& DECLARE_ASN1_FUNCTIONS(MySignInfoObject) /* * A higher level object containing the ASN1 fields, signature alg and * output signature. */ typedef struct MyObject_st { MySignInfoObject info; X509_ALGOR sig_alg; ASN1_BIT_STRING *signature; } MyObject; \& DECLARE_ASN1_FUNCTIONS(MyObject) \& /* The ASN1 definition of MySignInfoObject */ ASN1_SEQUENCE_cb(MySignInfoObject, NULL) = { ASN1_SIMPLE(MySignInfoObject, version, ASN1_INTEGER) ASN1_EMBED(MySignInfoObject, sig_alg, X509_ALGOR), } ASN1_SEQUENCE_END_cb(MySignInfoObject, MySignInfoObject) \& /* new, free, d2i & i2d functions for MySignInfoObject */ IMPLEMENT_ASN1_FUNCTIONS(MySignInfoObject) \& /* The ASN1 definition of MyObject */ ASN1_SEQUENCE_cb(MyObject, NULL) = { ASN1_EMBED(MyObject, info, MySignInfoObject), ASN1_EMBED(MyObject, sig_alg, X509_ALGOR), ASN1_SIMPLE(MyObject, signature, ASN1_BIT_STRING) } ASN1_SEQUENCE_END_cb(MyObject, MyObject) \& /* new, free, d2i & i2d functions for MyObject */ IMPLEMENT_ASN1_FUNCTIONS(MyObject) \& int test_asn1_item_sign_verify(const char *mdname, EVP_PKEY *pkey, long version) { int ret = 0; unsigned char *obj_der = NULL; const unsigned char *p = NULL; MyObject *obj = NULL, *loaded_obj = NULL; const ASN1_ITEM *it = ASN1_ITEM_rptr(MySignInfoObject); EVP_MD_CTX *sctx = NULL, *vctx = NULL; int len; \& /* Create MyObject and set its version */ obj = MyObject_new(); if (obj == NULL) goto err; if (!ASN1_INTEGER_set(obj->info.version, version)) goto err; \& /* Set the key and digest used for signing */ sctx = EVP_MD_CTX_new(); if (sctx == NULL || !EVP_DigestSignInit_ex(sctx, NULL, mdname, NULL, NULL, pkey)) goto err; \& /* * it contains the mapping between ASN.1 data and an object MySignInfoObject * obj->info is the \*(AqMySignInfoObject\*(Aq object that will be * converted into DER data and then signed. * obj->signature will contain the output signature. * obj->sig_alg is filled with the private key\*(Aqs signing algorithm id. * obj->info.sig_alg is another copy of the signing algorithm id that sits * within MyObject. */ len = ASN1_item_sign_ctx(it, &obj->sig_alg, &obj->info.sig_alg, obj->signature, &obj->info, sctx); if (len <= 0 || X509_ALGOR_cmp(&obj->sig_alg, &obj->info.sig_alg) != 0) goto err; \& /* Output MyObject in der form */ len = i2d_MyObject(obj, &obj_der); if (len <= 0) goto err; \& /* Set the key and digest used for verifying */ vctx = EVP_MD_CTX_new(); if (vctx == NULL || !EVP_DigestVerifyInit_ex(vctx, NULL, mdname, NULL, NULL, pkey)) goto err; \& /* Load the der data back into an object */ p = obj_der; loaded_obj = d2i_MyObject(NULL, &p, len); if (loaded_obj == NULL) goto err; /* Verify the loaded object */ ret = ASN1_item_verify_ctx(it, &loaded_obj->sig_alg, loaded_obj->signature, &loaded_obj->info, vctx); err: OPENSSL_free(obj_der); MyObject_free(loaded_obj); MyObject_free(obj); EVP_MD_CTX_free(sctx); EVP_MD_CTX_free(vctx); return ret; } .Ve
Licensed under the Apache License 2.0 (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy in the file \s-1LICENSE\s0 in the source distribution or at <https://www.openssl.org/source/license.html>.