source: EcnlProtoTool/trunk/openssl-1.1.0e/crypto/x509v3/v3_pku.c@ 331

Last change on this file since 331 was 331, checked in by coas-nagasima, 6 years ago

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc
File size: 2.0 KB
Line 
1/*
2 * Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10#include <stdio.h>
11#include "internal/cryptlib.h"
12#include <openssl/asn1.h>
13#include <openssl/asn1t.h>
14#include <openssl/x509v3.h>
15#include "ext_dat.h"
16
17static int i2r_PKEY_USAGE_PERIOD(X509V3_EXT_METHOD *method,
18 PKEY_USAGE_PERIOD *usage, BIO *out,
19 int indent);
20/*
21 * static PKEY_USAGE_PERIOD *v2i_PKEY_USAGE_PERIOD(X509V3_EXT_METHOD *method,
22 * X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *values);
23 */
24const X509V3_EXT_METHOD v3_pkey_usage_period = {
25 NID_private_key_usage_period, 0, ASN1_ITEM_ref(PKEY_USAGE_PERIOD),
26 0, 0, 0, 0,
27 0, 0, 0, 0,
28 (X509V3_EXT_I2R)i2r_PKEY_USAGE_PERIOD, NULL,
29 NULL
30};
31
32ASN1_SEQUENCE(PKEY_USAGE_PERIOD) = {
33 ASN1_IMP_OPT(PKEY_USAGE_PERIOD, notBefore, ASN1_GENERALIZEDTIME, 0),
34 ASN1_IMP_OPT(PKEY_USAGE_PERIOD, notAfter, ASN1_GENERALIZEDTIME, 1)
35} ASN1_SEQUENCE_END(PKEY_USAGE_PERIOD)
36
37IMPLEMENT_ASN1_FUNCTIONS(PKEY_USAGE_PERIOD)
38
39static int i2r_PKEY_USAGE_PERIOD(X509V3_EXT_METHOD *method,
40 PKEY_USAGE_PERIOD *usage, BIO *out,
41 int indent)
42{
43 BIO_printf(out, "%*s", indent, "");
44 if (usage->notBefore) {
45 BIO_write(out, "Not Before: ", 12);
46 ASN1_GENERALIZEDTIME_print(out, usage->notBefore);
47 if (usage->notAfter)
48 BIO_write(out, ", ", 2);
49 }
50 if (usage->notAfter) {
51 BIO_write(out, "Not After: ", 11);
52 ASN1_GENERALIZEDTIME_print(out, usage->notAfter);
53 }
54 return 1;
55}
56
57/*-
58static PKEY_USAGE_PERIOD *v2i_PKEY_USAGE_PERIOD(method, ctx, values)
59X509V3_EXT_METHOD *method;
60X509V3_CTX *ctx;
61STACK_OF(CONF_VALUE) *values;
62{
63return NULL;
64}
65*/
Note: See TracBrowser for help on using the repository browser.