2015-01-22 11:40:55 +08:00
|
|
|
/*
|
2016-05-18 02:51:26 +08:00
|
|
|
* Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1999-02-10 09:12:59 +08:00
|
|
|
*
|
2016-05-18 02:51:26 +08:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
1999-02-10 09:12:59 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-05-14 22:56:48 +08:00
|
|
|
#include "internal/cryptlib.h"
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/x509v3.h>
|
2015-08-31 19:58:07 +08:00
|
|
|
#include "internal/x509_int.h"
|
2015-09-05 20:32:58 +08:00
|
|
|
#include "ext_dat.h"
|
1999-02-10 09:12:59 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
static ASN1_OCTET_STRING *s2i_skey_id(X509V3_EXT_METHOD *method,
|
|
|
|
X509V3_CTX *ctx, char *str);
|
|
|
|
const X509V3_EXT_METHOD v3_skey_id = {
|
|
|
|
NID_subject_key_identifier, 0, ASN1_ITEM_ref(ASN1_OCTET_STRING),
|
|
|
|
0, 0, 0, 0,
|
|
|
|
(X509V3_EXT_I2S)i2s_ASN1_OCTET_STRING,
|
|
|
|
(X509V3_EXT_S2I)s2i_skey_id,
|
|
|
|
0, 0, 0, 0,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2016-10-11 00:01:24 +08:00
|
|
|
char *i2s_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method,
|
2016-08-12 06:40:49 +08:00
|
|
|
const ASN1_OCTET_STRING *oct)
|
1999-02-10 09:12:59 +08:00
|
|
|
{
|
2016-04-14 03:58:28 +08:00
|
|
|
return OPENSSL_buf2hexstr(oct->data, oct->length);
|
1999-02-10 09:12:59 +08:00
|
|
|
}
|
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
ASN1_OCTET_STRING *s2i_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method,
|
2016-08-12 06:40:49 +08:00
|
|
|
X509V3_CTX *ctx, const char *str)
|
1999-02-10 09:12:59 +08:00
|
|
|
{
|
2015-01-22 11:40:55 +08:00
|
|
|
ASN1_OCTET_STRING *oct;
|
|
|
|
long length;
|
1999-02-10 09:12:59 +08:00
|
|
|
|
2015-05-07 01:43:59 +08:00
|
|
|
if ((oct = ASN1_OCTET_STRING_new()) == NULL) {
|
2015-01-22 11:40:55 +08:00
|
|
|
X509V3err(X509V3_F_S2I_ASN1_OCTET_STRING, ERR_R_MALLOC_FAILURE);
|
|
|
|
return NULL;
|
|
|
|
}
|
1999-02-10 09:12:59 +08:00
|
|
|
|
2016-04-14 03:58:28 +08:00
|
|
|
if ((oct->data = OPENSSL_hexstr2buf(str, &length)) == NULL) {
|
2015-03-14 12:16:42 +08:00
|
|
|
ASN1_OCTET_STRING_free(oct);
|
2015-01-22 11:40:55 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
1999-02-10 09:12:59 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
oct->length = length;
|
1999-02-10 09:12:59 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
return oct;
|
1999-02-10 09:12:59 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
static ASN1_OCTET_STRING *s2i_skey_id(X509V3_EXT_METHOD *method,
|
2015-01-22 11:40:55 +08:00
|
|
|
X509V3_CTX *ctx, char *str)
|
1999-02-10 09:12:59 +08:00
|
|
|
{
|
2015-01-22 11:40:55 +08:00
|
|
|
ASN1_OCTET_STRING *oct;
|
2016-03-22 21:16:42 +08:00
|
|
|
X509_PUBKEY *pubkey;
|
|
|
|
const unsigned char *pk;
|
|
|
|
int pklen;
|
2015-01-22 11:40:55 +08:00
|
|
|
unsigned char pkey_dig[EVP_MAX_MD_SIZE];
|
|
|
|
unsigned int diglen;
|
|
|
|
|
|
|
|
if (strcmp(str, "hash"))
|
|
|
|
return s2i_ASN1_OCTET_STRING(method, ctx, str);
|
|
|
|
|
2015-05-07 01:43:59 +08:00
|
|
|
if ((oct = ASN1_OCTET_STRING_new()) == NULL) {
|
2015-01-22 11:40:55 +08:00
|
|
|
X509V3err(X509V3_F_S2I_SKEY_ID, ERR_R_MALLOC_FAILURE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx && (ctx->flags == CTX_TEST))
|
|
|
|
return oct;
|
|
|
|
|
|
|
|
if (!ctx || (!ctx->subject_req && !ctx->subject_cert)) {
|
|
|
|
X509V3err(X509V3_F_S2I_SKEY_ID, X509V3_R_NO_PUBLIC_KEY);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx->subject_req)
|
2016-03-22 21:16:42 +08:00
|
|
|
pubkey = ctx->subject_req->req_info.pubkey;
|
2015-01-22 11:40:55 +08:00
|
|
|
else
|
2016-03-22 21:16:42 +08:00
|
|
|
pubkey = ctx->subject_cert->cert_info.key;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2016-03-22 21:16:42 +08:00
|
|
|
if (pubkey == NULL) {
|
2015-01-22 11:40:55 +08:00
|
|
|
X509V3err(X509V3_F_S2I_SKEY_ID, X509V3_R_NO_PUBLIC_KEY);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2016-03-22 21:16:42 +08:00
|
|
|
X509_PUBKEY_get0_param(NULL, &pk, &pklen, NULL, pubkey);
|
|
|
|
|
|
|
|
if (!EVP_Digest(pk, pklen, pkey_dig, &diglen, EVP_sha1(), NULL))
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
|
|
|
|
2015-03-14 12:16:42 +08:00
|
|
|
if (!ASN1_OCTET_STRING_set(oct, pkey_dig, diglen)) {
|
2015-01-22 11:40:55 +08:00
|
|
|
X509V3err(X509V3_F_S2I_SKEY_ID, ERR_R_MALLOC_FAILURE);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
return oct;
|
|
|
|
|
|
|
|
err:
|
2015-03-14 12:16:42 +08:00
|
|
|
ASN1_OCTET_STRING_free(oct);
|
2015-01-22 11:40:55 +08:00
|
|
|
return NULL;
|
1999-02-10 09:12:59 +08:00
|
|
|
}
|