.Net CryptoAPI 機能と利用法

Size: px
Start display at page:

Download ".Net CryptoAPI 機能と利用法"

Transcription

1 NET CryptoAPI

2 API Part 3..NET Crypto API _api/index.html Windows CryptoAPI CryptoAPI PKI

3 CryptoAPI API CTL CryptoAPI CSP Crypto Service Provider C/C++ C/C++ Win32 C/C++ C/C++ PKCS#7 C/C++ PKCS#7 C/C++ C/C++ CryptoAPI Crypto Service Provider C/C++ Revocation Provider C/C++.NET Security.NET Framework System.Security.Cryptography C# System.Security.Cryptography.X509Certificates C# CAPICOMPInvoke C#.NET Framework

4 CryptoAPI

5 CryptoAPI API

6 CryptoAPI CMS(PKCS#7) LDAP MY ADDRESSBOOK EE CA CA ROOT CA mmc.exe

7 CryptoAPI General Cryptography Structures Common Certificate Structures X.509 Certificate Extension Structures Message Structures OID Support Structures Certificate Chain Structures CSP Structures WinTrust Structures Common Certificate Structures CERT_INFO CERT_CONTEXT CRL_INFO CRL_CONTEXT CTL_INFO CTL_CONTEXT CERT_INFO CRL CRL CRL CRL_INFO CTL CTL CTL,CTL_INFO

8 CryptoAPI CTL CMS signeddatams content Out of Band SignedData encapcontentinfo contenttype content ID certificates signerinfos CTL (SHA1) CTL

9 CryptoAPI

10 CryptoAPI CSP Crypto Service Provider Provider TypeProvider Name ProviderType Provider Type PROV_RSA_FULL PROV_RSA_SIG PROV_DSS PROV_FORTEZZA PROV_MS_EXCHANG E PROV_SSL PROV_RSA_SCHANN EL PROV_DSS_DH PROV_RSA_AES RSA KEA RSA RSA RSA DH RSA RSA RSA DSS DSS RSA RSA RSA DSS RSA RC2,RC4 Skipjack CAST RC4DES MD5,SHA DES CYLINK MEK RC2,RC4,AES MD5,SHA MD5,SHA MD5,SHA SHA MD5 MD5,SHA MD5,SHA Microsoft Base Cryptographic Provider Microsoft Strong Cryptographic Provider Microsoft Enhanced Cryptographic Provider PROV_RSA_FULL Provider Name 3

11 CryptoAPI CSP

12 CryptoAPI API CryptEnumProviders CryptAcquireContext CryptDeriveKey CryptEncrypt CryptDecrypt CryptCreateHash CryptGetHashParam CryptHashData CSP CSP

13 CryptoAPI C/C++ HCRYPTPROV hcryptprov; HCRYPTKEY hkey; BYTE *pbbuffer; // DWORD dwbuflen; // BYTE *pbhash // BYTE *dwhashlen // // CSP ::CryptAcquireContext(&hCryptProv, NULL, MS_ENHANCED_PROV, // CSP PROV_RSA_FULL, // CSP 0); // SHA1 ::CryptCreateHash(hCryptProv, CALG_SHA1, 0, 0, &hhash); ::CryptHashData(hHash, pbbuffer, dwbuflen, 0)) ::CryptGetHashParam(hHash, HP_HASHVAL, NULL, &dwhashlen, 0); pbhash = (BYTE*)malloc(dwHashLen)) ::CryptGetHashParam(hHash, HP_HASHVAL, pbhash, &dwhashlen, 0); printf("the hash is: "); for(i = 0 ; i < dwhashlen ; i++) { printf("%2.2x ",pbhash[i]); // } printf(" n"); CSP

14 CryptoAPI C/C++ HCRYPTPROV hcryptprov; HCRYPTKEY hkey; HCRYPTKEY hxchgkey; HCRYPTHASH hhash; char *szpassword = password ; BYTE *pbbuffer; // DWORD dwbufferlen; // DWORD dwcount; // /* */ // CSP ::CryptAcquireContext(&hCryptProv, NULL, MS_ENHANCED_PROV, // CSP PROV_RSA_FULL, // CSP 0); // MD5 ::CryptCreateHash(hCryptProv, CALG_SHA1, 0, 0, &hhash); // ::CryptHashData(hHash, (BYTE *)szpassword, strlen(szpassword), 0); // ::CryptDeriveKey( hcryptprov, CALG_3DES, // hhash, // KEYLENGTH_3DES CRYPT_EXPORTABLE CRYPT_NO_SALT, // &hkey); // ::CryptEncrypt(hKey, 0, TRUE, // 0, pbbuffer, // [in/out] &dwcount, // dwbufferlen); // pbbuffer ::CryptDestroyKey(hKey); // ::CryptDestroyHash(hHash); // ::CryptReleaseContext(hCryptProv, 0);// CSP DES

15 CryptoAPI C/C++ HCRYPTPROV hcryptprov; HCRYPTKEY hkey; HCRYPTKEY hxchgkey; HCRYPTHASH hhash; char *szpassword = password ; BYTE *pbbuffer; // DWORD dwcount; // hkey ::CryptDecrypt(hKey, 0, TRUE, 0, NULL, &dwcount); pbbuffer = (BYTE *)malloc(pbbuffer); ::CryptDecrypt(hKey, 0, TRUE, 0, pbbuffer, &dwcount); free(pbbuffer);

16 C/C++ CryptoAPI HCERTSTORE hcertstore; /* */ PCCERT_CONTEXT pcertcontext /* */ hcertstore = ::CertOpenSystemStore(NULL, ADDRESSBOOK ); while(pcertcontext = ::CertEnumCertificatesInStore(hCertStore, pcertcontext)) { char sznamestring[256]; ::CertGetNameString pcertcontext, CERT_NAME_RDN_TYPE, 0, /* CERT_NAME_ISSUER_FLAG */ NULL, sznamestring, 256); printf( subject : %s n, sznamestring); } ::CertFreeCertificateContext(pCertContext); ::CertCloseStore(hCertStore, CERT_CLOSE_STORE_CHECK_FLAG);

17 CryptoAPI C/C++ char szcertfile = mycert.cer PCCERT_CONTEXT pcertcontext; /* */ CFile file(szcertfile, CFile::modeRead); BYTE *pszbuf = new BYTE[file.GetLength()]; file.read(pszbuf, file.getlength()); pcertcontext = ::CertCreateCertificateContext( X509_ASN_ENCODING PKCS_7_ASN_ENCODING, pszbuf, file.getlength()); file.close(); delete(pszbuf); if (pcertcontext == NULL) { DWORD dwerr = ::GetLastError(); } X.509

18 CryptoAPI C/C++ CertCreateCertificateChainEngine CertGetCertificateChain CertVerifyRevocation Demo.

19 C/C++ CryptoAPI PKCS#7signedData CryptSignMessage CryptVerifyDetachedMessageSignature CryptVerifyMessageSignature Demo.

20 CryptoAPI PKCS#7envelopedData C/C++ CryptEncryptMessage CryptDecryptMessage CryptSignAndEncryptMessage CryptDecryptAndVerifyMessageSignature Demo.

21 CryptoAPI C/C++ PKCS #12 PFXExportCertStoreEx PFXImportCertStore PFXIsPFXBlob PFXVerifyPassword PKCS #12 PKCS #12 PKCS #12 PKCS #12 Demo.

22 CryptoAPI

23 CryptoAPI Crypto Service Provider C/C++ CSPDK Cryptographic Service Provider Developer s Toolkit advapi32.dll OS WindowsNT4.0 Demo.

24 CryptoAPI Revocation Provider C/C++ OCSP JPKILGPKI URI CRL Demo.

25 .NET Security

26 .NET Security Makecert.exe Certmgr.exe Chktrust.exe Caspol.exe Signcode.exe Permview.exe PEVerify PEverify.exe Secutil Secutil.exe Setreg.exe Cert2spc.exe Sn.exe

27 .NET Framework.NET Security

28 .NET Security System.Security.Cryptography CryptoServiceProvider MD5SHA1SHA256SHA512 DESRC2Rijndael TripleDES DSARSA PKCS#1 V1.5OAEP : HMACSHA1MACTripleDES C# HashAlgorithm RSACryptoServiceProvider C# DESCryptoServiceProvider CryptoStream Demo.

29 .NET Security System.Security.Cryptography.X50 9Certificates X509Certificate Get X509CertificateCollection X509CertificateCollection.X509Certificate Enumerator C# Demo.

30 .NET Security CAPICOM CrtpyoAPI COM CAPICOM Certificate Store Objects Digital Signature Objects Enveloped Data Objects CAB Data Encryption Objects capicom.inf capicom.dll Auxiliary Objects AlgorithmOID SettingsUtilities Interoperability ICertContext ICertStore Interfaces IChainContext Enumeration Types > regsvr32 capicom.dl PKCS #7 signeddata PKCS #7 envelopeddata PKCS #7 EncryptedData

31 .NET Security CAPICOM C# CAPICOM.StoreClass CAPICOM.Certificate CAPICOM.Certificates CAPICOM.Store CAPICOM.Certificate CAPICOM.Chain CertFindChainInStore XML CAPICOM.Store System.Security.Cryptography.X509Certificates System.Security.Cryptography.Xml PublicKeyBlobFromCertificateRawData ImportPublicKeyBlob CSP PKCS#7 CryptoAPI PInvoke Demo.

32

セキュリティAPIに関する技術調査 2003年版

セキュリティAPIに関する技術調査 2003年版 API Microsoft Windows Internet Explorer Outlook Visual C++ Microsoft Corp. ...1 Microsoft.NET Crypto API...1...1.NET Framework...2 Microsoft.NET Crypto API...4 API...4...5 CTL Certificate Trust List...7...8

More information

IC API

IC API IC API Handa-F@mail.dnp.co.jp 2004 8 26 Copyright (c) 2004 NPO Page 2 IC API PKI IC PKCS#11 CSP (Cryptographic Service Provider) PKCS#11 CSP PKCS#15 GSC-IS Copyright (c) 2004 NPO Page 3 (identity token)

More information

Microsoft Intune MDM ソリューション向けDigiCert® 統合ガイド

Microsoft Intune MDM ソリューション向けDigiCert® 統合ガイド Microsoft Intune MDM DigiCert 2018 7 31 Microsoft Intune MDM DigiCert : 2018 7 31 Copyright 2018 DigiCert, Inc. All rights reserved. DigiCert DigiCert DigiCert, Inc. Symantec Norton Symantec Corporation

More information

MS Crypto の 10 年 過去 現在 未来 渡辺清, CISSP Security Center of Excellence マクロソフト株式会社

MS Crypto の 10 年 過去 現在 未来 渡辺清, CISSP Security Center of Excellence マクロソフト株式会社 MS Crypto の 10 年 過去 現在 未来 渡辺清, CISSP Security Center of Excellence マクロソフト株式会社 本プレゼンテーションについて 私個人の見解であり 会社としての総意ではありません 6/29/2010 2 目次 暗号 API の発展 CryptoAPI.NET Crypto Next Generation Cryptographic API (CNG).NET

More information

untitled

untitled better RFID 1 /?? PKI PKI ) (GPKI) GtoB GPKI 3300- LGPKI GtoC -> Identrus B2B GPKI Identrus PKI 2 Internet-VPN PKI? HTTPS ( ) HTTPS 3 PKI??????? PDA/ /? RFIDPKI?? 4 Challenge

More information

署名ツール検証報告書

署名ツール検証報告書 2010 01 27 XML 1.... 3 2.... 5 3.... 15 4.... 18 5.... 22 6.... 22 Copyright (c) XML 2010 All rights reserved. Page-1/23 Copyright (c) XML 2010 All rights reserved. Copyright (c) XML 2010 All rights reserved.

More information

電子メールのセキュリティ

電子メールのセキュリティ S/MIME 1...1 1.1... 1 1.2... 2 1.3... 2 2...3 2.1... 3 2.2... 4 2.3... 4 3...5 3.1... 5 3.2... 6 3.3... 8 3.4... 10 4...12 4.1 PGP... 12 4.2 (CA)... 13 5 CRL...15 5.1 ( ID )... 15 5.2 CRL(Certificate Revocation

More information

/02/ /09/ /05/ /02/ CA /11/09 OCSP SubjectAltName /12/02 SECOM Passport for Web SR

/02/ /09/ /05/ /02/ CA /11/09 OCSP SubjectAltName /12/02 SECOM Passport for Web SR for Web SR Certificate Policy Version 2.50 2017 5 23 1.00 2008/02/25 1.10 2008/09/19 1.20 2009/05/13 5 1.30 2012/02/15 5.6 CA 1.40 2012/11/09 OCSP SubjectAltName 2.00 2013/12/02 SECOM Passport for Web

More information

第3 章 電子認証技術に関する国際動向

第3 章 電子認証技術に関する国際動向 3 IETF PKI TAM Trust Anchor Management 3. IETF Internet Engineering Task Force PKIX WG 3.1. IETF PKIX WG 1 2006 PKI Public-Key Infrastructure IETF PKIX WG 2007 69 IETF 70 IETF WG PKIX WG 2006 3 2 3.2.

More information

2

2 m.uehata@sii.co.jp 2 SII 1881 1892 1937 1959 3 SEIKO 1881 1955 1964 1974 1984 1992 1994 1998 1998 2002 2002 4 SII 1960 1970 1980 1990 CMOS IC LCD LCM 2000 COF 1937 VLSI FIB 5 < > SA EOA CAE < > 6 Network

More information

/07/ /10/12 I

/07/ /10/12 I Certificate Policy Version 1.10 2018 10 12 1.00 2018/07/24 1.10 2018/10/12 I 1.... 1 1.1... 1 1.2... 1 1.3 PKI... 2 1.3.1 CA... 2 1.3.2 RA... 2 1.3.3... 2 1.3.3.1... 2 1.3.3.2... 3 1.3.4... 3 1.3.5...

More information

YMS-VPN1_User_Manual

YMS-VPN1_User_Manual YAMAHA VPN YMS-VPN1 2007 12 YAMAHA VPN YMS-VPN1 YMS-VPN1 RT Windows PC IPsec VPN 2000-2002 SSH Communications Security Corp 2004-2007 SafeNet Inc. 2004-2007 dit Co., Ltd. 2006-2007 YAMAHA CORPORATION MicrosoftWindows

More information

はじめに

はじめに 19 1.1 19 1.2 21 1.3 22 1.3.1 DES 24 1.4 25 1.4.1 DH 26 1.4.2 RSA 26 1.4.3 ElGamal 27 1.4.4 DSA 27 1.5 27 1.6 28 1.6.1 SHA-1 28 1.6.2 MD5 Message Digest 5 28 1.7 29 1.7.1 MIC 29 1.7.2 HMAC 29 1.7.3 30

More information

CMS長期署名プロファイル(案)

CMS長期署名プロファイル(案) 1/22 RFC3126, Electronic Signature Formats for long term electronic signatures (ETSI TS 101 733 V.1.2.2(2000-12)) ETSI TS 101 733 V1.5.1(2003-12), Electronic Signature Formats draft-pinkas-smime-cades-00.txt(2005-7),

More information

untitled

untitled API API Part 1 10API 25 10API Part2 Copyright (c) 2004 NPO Page 2 Copyright (C) 2004 NPO JNSA 1 API API Wassenaar API Copyright (c) 2004 NPO Page 4 Copyright (C) 2004 NPO JNSA 2 56 512512 112 IC 1 I II

More information

1. PKI (EDB/PKI) (Single Sign On; SSO) (PKI) ( ) Private PKI, Free Software ITRC 20th Meeting (Oct. 5, 2006) T. The University of Tokush

1. PKI (EDB/PKI) (Single Sign On; SSO) (PKI) ( ) Private PKI, Free Software ITRC 20th Meeting (Oct. 5, 2006) T. The University of Tokush PKI LAN EDB/PKI and Campus Wireless LAN Authentication EDB/PKI http://web.db.tokushima-u.ac.jp/edb-manual/pki.html http://ldap.db.tokushima-u.ac.jp/wireless/ @. E-mail: alex@ee.tokushima-u.ac.jp Id: itrc20th-20061005.tex,v

More information

untitled

untitled Java JCE JAVA API 1 2 java.seceurity.* javax.crypto.* / MAC (Message Authentication Code) ( ) java.security () javax.crypto 2004/8/26 Java JCE 3 getinstance() Provider Provider

More information

Test 1

Test 1 PowerBuilder Engineering, Information Technology and Solutions Group ... 3 PBCrypto... 3 PowerBuilder Exception JCE Exceptions... 4 PBCrypto... 4 PBCrypto API... 5 CreateRSAKeyPair... 5 DecryptCipherTextUsingBlockCipher...

More information

untitled

untitled PKI UTF8String Part2: PKI UTF8String Microsoft MS Windows Windows 2000 Windows NT Windows XP Windows Internet Explorer Outlook Outlook Express Microsoft Corporation Sun Microsystems Sun Java Solaris Java

More information

P 葛生 和人.indd

P 葛生 和人.indd ID IC PKI Public Key Infrastructure PKI IC IC 1 IC ID OS ID ID PKI OS IC IC Windows OS OS Windows 2000 Windows XP winlogon.exe GINA Graphical Identification and Authentication API API [1] GINA winlogon.exe

More information

SSL PKI EFS STPP

SSL PKI EFS STPP .NET SSL PKI EFS STPP Windows NTLM (KDC) SSL/TLS, NTLM, SSL/TLS, Active Active Directory Directory PKI PKI CRL CRL ( NTLM, NTLM,, PKI, PKI, ) DNS DNS Windows Windows ACL ACL Active Directory (AD) AD GUI

More information

マイナンバーカードによる認証と署名

マイナンバーカードによる認証と署名 Open Source Solution Technology Corporation HAMANO Tsukasa JNSA 電子署名 WG 秋祭り 君の署名は 目次 マイナンバーカードによる認証と署名 個人番号カードの中身 IC カードによる認証とデジタル署名 ユーザー認証 SSH 認証 /macos ログイン / ブラウザ デジタル署名 CMS 署名

More information

IW2001-B2 1 Internet Week 2001 ( ) Copyright 2001 All Rights Reserved, by Seiji Kumagai IW2001-B2 2 CodeRed Copyright 2001 All Rights

IW2001-B2 1 Internet Week 2001 ( ) Copyright 2001 All Rights Reserved, by Seiji Kumagai IW2001-B2 2 CodeRed Copyright 2001 All Rights 1 Internet Week 2001 ( ) kuma@isid.co.jp 2 CodeRed 1 3 (EXCEED ) se cu ri ty? 4? 2 5 Web IP Web MP3 6 3 7 1.5Mbps8Mbps 500 MP3 CM VoD 8 4 ADSL (Asymmetric Digital Subscriber Line) () CATV FWA (Fixed Wireless

More information

untitled

untitled PKI 1 / SSL/TLS PKI 28 Oct 2005 PKI /JNSA PKI Day 3 PKI? 2 RFC 2459/RFC 3280/RFC 3280bis CRL(RFC 2459/RFC 3280/RFC 3280bis) OCSP(RFC 2560/Light-weight OCSP) SCVP(SCVP) CMP(RFC 2510/RFC 4210) CRMF(RFC 2511/RFC

More information

Cisco® ASA シリーズルーター向けDigiCert® 統合ガイド

Cisco® ASA シリーズルーター向けDigiCert® 統合ガイド Cisco ASA DigiCert 2013 7 8 Cisco ASA VPN DigiCert : 2013 7 8 Copyright 2018 DigiCert, Inc. All rights reserved. DigiCert DigiCert DigiCert, Inc. Symantec Norton Symantec Corporation DigiCert, Inc. DigiCert,

More information

untitled

untitled All rights reserved. NTT Copy rights 2007 1 HTTPS 100% 92% 53% S. Schechter et al, The Emperor's New Security Indicators, Proc. IEEE Symp. Security and Privacy, 2007 All rights reserved. NTT Copy rights

More information

(OnePoint) ( URL Web Copyright 2005 Microsoft Corporation. All rights reserved. Microsoft Windows Visual Basic Visual Studio Microsoft Corporation

(OnePoint) ( URL Web Copyright 2005 Microsoft Corporation. All rights reserved. Microsoft Windows Visual Basic Visual Studio Microsoft Corporation Microsoft Microsoft Visual Basic.NET (OnePoint) ( URL Web Copyright 2005 Microsoft Corporation. All rights reserved. Microsoft Windows Visual Basic Visual Studio Microsoft Corporation Microsoft Microsoft

More information

「暗号/情報セキュリティ」

「暗号/情報セキュリティ」 atsuhiro@iss.isl.melco.co.jp 2002-10-21 PKI PKI: (Public Key Infrastructure) 1976 DES 1978 Privacy Money ()DES, RIJNDAEL, MISTY, KASUMI () RSA, DSA, I Love You ( ) A 55 m m 8 & $ ( ) I Love You A B

More information

サブスクライバー / 署名者 Subscriber 側 ( アリス ) の要件 セキュアな署名 なりすましをいかに防ぐか 署名に使用する私有鍵をいかに保護私有鍵をいかに保護するか?? セキュアなハードウェアトークンなどが有効 セキュアな装置のセキュリティ基準 欧州の電子署名では SSCD (Secu

サブスクライバー / 署名者 Subscriber 側 ( アリス ) の要件 セキュアな署名 なりすましをいかに防ぐか 署名に使用する私有鍵をいかに保護私有鍵をいかに保護するか?? セキュアなハードウェアトークンなどが有効 セキュアな装置のセキュリティ基準 欧州の電子署名では SSCD (Secu サブスクライバー / 署名者 1 サブスクライバー / 署名者 Subscriber 側 ( アリス ) の要件 セキュアな署名 なりすましをいかに防ぐか 署名に使用する私有鍵をいかに保護私有鍵をいかに保護するか?? セキュアなハードウェアトークンなどが有効 セキュアな装置のセキュリティ基準 欧州の電子署名では SSCD (Secure signature creation device ) としてその要件を定義

More information

ISE の BYOD に使用する Windows サーバ AD 2012 の SCEP RA 証明書を更新する

ISE の BYOD に使用する Windows サーバ AD 2012 の SCEP RA 証明書を更新する ISE の BYOD に使用する Windows サーバ AD 2012 の SCEP RA 証明書を更新する 目次 はじめに前提条件要件使用するコンポーネント問題解決策 1. 古い秘密キーの特定 2. 古い秘密キーの削除 3. 古い MSCEP-RA 証明書の削除 4. SCEP の新しい証明書の生成 4.1. Exchange 登録証明書を生成する 4.2. CEP 暗号化証明書を生成する 5.

More information

Microsoft PowerPoint - T9-inada-IW2002.ppt

Microsoft PowerPoint - T9-inada-IW2002.ppt IW2002 PKI 応用編 富士ゼロックス株式会社稲田龍 PKI アプリケーション 1 アプリケーションの動向 HTTPS S/MIME 電子署名アプリケーション HTTPS SSL を使い通信路の暗号化と接続先 ( 元 ) の認証を行う Internet Explorer/Netscape Navigator などが標準でサポート 多くの場合

More information

楕円曲線暗号の整備動向 +楕円暗号の実装状況

楕円曲線暗号の整備動向  +楕円暗号の実装状況 楕円曲線暗号の整備動向 + 楕円暗号の実装状況 2011 年 2 23 筑波 学 岡晃 2011/2/23 JNSA PKI 相互運用 WG 1 IPA 情報セキュリティ技術動向調査 TG ( タスク グループ ) 広範な情報セキュリティ分野において 継続的に かつ 質の い技術情報を収集し続けるため 半期毎に発表会形式の会合を開催し 討議をふまえて調査報告書を作成します http://www.ipa.go.jp/security/outline/comm

More information

28 SAS-X Proposal of Multi Device Authenticable Password Management System using SAS-X 1195074 2017 2 3 SAS-X Web ID/ ID/ Web SAS-2 SAS-X i Abstract Proposal of Multi Device Authenticable Password Management

More information

日本オラクル株式会社

日本オラクル株式会社 FISC 6 Oracle Database 10g ~ ~ : 2005 7 26 : 2005 7 31 : 1.0 2004 4 (* ) FISC ) (* ) FISC 6 (* FISC 6 ) FISC 6 Oracle g Database 10 (FISC) http://www.fisc.or.jp FISC http://www.fisc.or.jp/info/info/050307-1.htm

More information

ss7aumst.ps

ss7aumst.ps IBM Global Security Kit Secure Sockets Layer ikeyman 7a SC88-9855-00 ( SC32-1363-00) IBM Global Security Kit Secure Sockets Layer ikeyman 7a SC88-9855-00 ( SC32-1363-00) 53 ikeyman 7a URL http://www.ibm.com/jp/manuals/main/mail.html

More information

Enhancements In Certificate Service

Enhancements In Certificate Service Windows Server 2008 の PKI 機能 渡辺清 CISSP Security Architect and Senior Consultant Security Center of Excellence, Microsoft アジェンダ PKI 概要 Windows Server 2008 PKI 機能 暗号 (Cryptography) 登録 (Enrollment) 管理 (Manageability)

More information

iPhone Configuration Utility

iPhone Configuration Utility iphone 2011-03-04 Apple Inc. 2011 Apple Inc. All rights reserved. 1 Apple Apple Apple Inc. 1 Infinite Loop Cupertino, CA 95014 408-996-1010 163-1450 3 20 2 http://www.apple.com/jp/ App Store itunes Store

More information

Windows Oracle -Web - Copyright Oracle Corporation Japan, All rights reserved.

Windows Oracle -Web - Copyright Oracle Corporation Japan, All rights reserved. Windows Oracle -Web - Copyright Oracle Corporation Japan, 2004. All rights reserved. Agenda Oracle Windows Windows Oracle 1 / Active Directory/Enterprise User Security 1-1 Windows 1-2 Kerberos 1-3 Enterprise

More information

untitled

untitled Vista PKI PKI IE7IE7 Kiyoshi Watanabe, CISSP Security Center of Excellence (SCOE) Microsoft Vista Windows 2008 Vista, IE7, PKI Enrollment Credential CNG Bit Locker NAP IE7 Vista 6 http://www.csoonline.com/pdf/6_month_vista_vuln_report.pdf

More information

モデムおよびネットワーク接続ガイド

モデムおよびネットワーク接続ガイド b 221743-192 2001 5 2001 Compaq Computer Corporation 2001 Compaq Compaq Armada Compaq Computer Corporation Evo Compaq Information Technologies Group, L.P. Microsoft Windows Windows NT Microsoft Corporation

More information

3. RIR 3.1. RIR Regional Internet Registry APNIC Asia Pacific Network Information Centre RIR RIPE NCC Réseaux IP Européens Network Coordination Centre

3. RIR 3.1. RIR Regional Internet Registry APNIC Asia Pacific Network Information Centre RIR RIPE NCC Réseaux IP Européens Network Coordination Centre 3 RIR RIR APNIC 1. 2. MyAPNIC RIPE NCC 1. 2. LIR Portal ARIN 3. RIR 3.1. RIR Regional Internet Registry APNIC Asia Pacific Network Information Centre RIR RIPE NCC Réseaux IP Européens Network Coordination

More information

WinHPC ppt

WinHPC ppt MPI.NET C# 2 2009 1 20 MPI.NET MPI.NET C# MPI.NET C# MPI MPI.NET 1 1 MPI.NET C# Hello World MPI.NET.NET Framework.NET C# API C# Microsoft.NET java.net (Visual Basic.NET Visual C++) C# class Helloworld

More information

Testing XML Performance

Testing XML Performance - DataPower Technology, Inc. XML Web 2003 5 DATAPOWER XML WEB - Copyright 2003DataPower Technology, Inc. All Rights Reserved. DataPower Technology, Inc. DataPower DataPower ( ) DataPower 2003 5 2/17 DATAPOWER

More information

Pro 16 ipad iphone Windows Mac Web App : 12,600 T1 1 1 * Starter Solution Excel PDF Web Web CSV, Excel, XML, ODBC ODBC / JDBC ** SQL REST API (JSON, c

Pro 16 ipad iphone Windows Mac Web App : 12,600 T1 1 1 * Starter Solution Excel PDF Web Web CSV, Excel, XML, ODBC ODBC / JDBC ** SQL REST API (JSON, c An Apple Subsidiary NPO Version 16 May 2017 Pro 16 ipad iphone Windows Mac Web App : 12,600 T1 1 1 * Starter Solution Excel PDF Web Web CSV, Excel, XML, ODBC ODBC / JDBC ** SQL REST API (JSON, curl ) Pro

More information

IT 2

IT 2 Knowledge-Works, Inc. Tokyo UML Caché IT 2 UML Caché Caché vocabulary UML Unified Modeling Language) UML UML / UML but UML UML UML DBMS / 2003 InternSystems DevCon Transformation Transformation on

More information

橡C12電子メール最新技術動向revisd.PDF

橡C12電子メール最新技術動向revisd.PDF Internet Week 99 Internet Week 99 1999 Naoaki Watanabe,Japan Network Information Center 1... 1 2... 1 3... 2 4... 5 5... 7 6 IMAP4... 10 7 S/MIME PGP... 14 8... 18 9... 19 IMAP4 Happy99 OutLook Exchange

More information

<4D6963726F736F667420576F7264202D2031303036303748504B4991CE899E82688262834A815B8368834B834383688389834383935F5665725F322E3030816988C4816A95578F8089BB88CF88F589EF90528B638CE32E646F63>

<4D6963726F736F667420576F7264202D2031303036303748504B4991CE899E82688262834A815B8368834B834383688389834383935F5665725F322E3030816988C4816A95578F8089BB88CF88F589EF90528B638CE32E646F63> JAHIS 標 準 10-002 HPKI 対 応 IC カードガイドライン 第 2 版 2010 年 6 月 保 健 医 療 福 祉 情 報 システム 工 業 会 セキュリティ 委 員 会 HPKI 対 応 ICカードガイドライン 作 成 WG ま え が き 本 ガイドラインは 保 健 医 療 福 祉 分 野 における 電 子 署 名 を 行 うに 際 して 利 用 される PKI の 機 能

More information

PKIの標準化動向と リソースPKI

PKIの標準化動向と リソースPKI PKI Day 2009 2009 6 24 PKI PKI JPNIC RFC5280 PKI RFC5280 PKI RPKI IP RPKI RFC5280 RFC5280 RFC3280 PKI RFC5280 RFC5280 1/4 RFC5280 X.509-based PKI X.509CRL 2008 5published RFC5280 2/4 1988 1995 1997 1999

More information

untitled

untitled Visual Basic.NET 1 ... P.3 Visual Studio.NET... P.4 2-1 Visual Studio.NET... P.4 2-2... P.5 2-3... P.6 2-4 VS.NET(VB.NET)... P.9 2-5.NET... P.9 2-6 MSDN... P.11 Visual Basic.NET... P.12 3-1 Visual Basic.NET...

More information

リリースメモ TCPLink Enterprise Server6680(Ver )

リリースメモ TCPLink Enterprise Server6680(Ver ) TCPLink Enterprise Server 6680 エミュレータ Ver6.08-01 リリースメモ Microsoft Windows Windows Server Windows Vista および Internet Explorer は 米国 Microsoft Corporation の 米国 日本およびその他の国における登録商標または商標です 目次 [Ver.6.08-01 での変更内容

More information

Cisco WebEx ホワイトペーパー: リアルタイムコラボレーションのパワーを解き放つ: Cisco WebEx ソリューションのセキュリティ概要

Cisco WebEx ホワイトペーパー: リアルタイムコラボレーションのパワーを解き放つ: Cisco WebEx ソリューションのセキュリティ概要 : Cisco WebEx : Cisco WebEx Cisco WebEx 107-6227 9-7-1 Tel: 03-6434-6044 Fax: 03-5411-9226 Japaninfo@webex.com www.webex.co.jp WebEx Communications, Inc. 3979 Freedom Circle, Santa Clara, CA 95054 USA

More information

3. /dev/urandom 1024 ~CA0/private/cakey.pem $ openssl genrsa -rand /dev/urandom -out \ private/cakey.pem 1024 Generating RSA private key

3. /dev/urandom 1024 ~CA0/private/cakey.pem $ openssl genrsa -rand /dev/urandom -out \ private/cakey.pem 1024 Generating RSA private key PKI : OpenSSL CA NISOC @ 2007/01/06 1 CA:Certificate Authority OpenSSL CA CA0 CA0 2 CA CA1 CA2 3 CA CA1 CA2 PC CA CA 2 CA CA0 1. CA ~CA0 openssl.cnf [ CA default ] dir ~CA0 [ req distinguished name ] CSR

More information

Web Web Web Web i

Web Web Web Web i 28 Research of password manager using pattern lock and user certificate 1170369 2017 2 28 Web Web Web Web i Abstract Research of password manager using pattern lock and user certificate Takuya Mimoto In

More information

PDFŠp…f†[…^

PDFŠp…f†[…^ DIGITAL IMAGING SYSTEM DICOM Digital Imaging and Communications in Medicine (DICOM) Part 1: Introduction and Overview NEMA Part 4 Service Class Specifications Part 3 Information Object

More information

C3印刷用.PDF

C3印刷用.PDF [ C-3 ] Oracle8i On Windows Agenda Windows Oracle8i Oracle8i for Windows NT/2000 R8.1.7 Oracle HTTP Server Oracle intermedia Oracle Workflow Windows Oracle8i for Windows Oracle8i Enterprise Edition Oracle8i

More information

C02.pdf

C02.pdf / 1999 12 14 Internet Week 99 Internet Week 99 1999 Yu Inamura, Japan Network Information Center 1 2 2000 1. 2. 3. 4. 1976 5. 1993 2.1 N!! N 2.2 1976 Shannon ConfusionDiffusion 2 SPN Substitution Permutation

More information

<4D F736F F D F81798E518D6C8E9197BF33817A88C38D868B5A8F70834B D31292E646F63>

<4D F736F F D F81798E518D6C8E9197BF33817A88C38D868B5A8F70834B D31292E646F63> 参考資料 3 CRYPTREC 暗号技術ガイドライン (SHA-1) 2014 年 3 月 独立行政法人情報通信研究機構独立行政法人情報処理推進機構 目次 1. 本書の位置付け... 1 1.1. 本書の目的... 1 1.2. 本書の構成... 1 1.3. 注意事項... 1 2. ハッシュ関数 SHA-1 の利用について... 2 2.1. 推奨されない利用範囲... 2 2.2. 許容される利用範囲...

More information

Cisco Umbrella Branch Cisco Umbrella Branch Cisco ISR Umbrella Branch

Cisco Umbrella Branch Cisco Umbrella Branch Cisco ISR Umbrella Branch Cisco Umbrella Branch Cisco Umbrella Branch Cisco ISR 4000 1 2 3 Umbrella Branch 1 Cisco Umbrella Branch Cisco ISR 4000 Cisco Umbrella Branch Security K9 ROM Monitor (ROMMON) 16.2(1r) ROMMON 16.2(1r) 3

More information

HOLON/MD

HOLON/MD Copyright(C) 2002 NEC and XML Consortium. All rights reserved. 1 Copyright(C) 2002 NEC and XML Consortium. All rights reserved. 2 XML XML Copyright(C) 2002 NEC and XML Consortium. All rights reserved.

More information



 Thunder ADC( ロードバランサー ) における クライアント証明書認証の設定手順 Ver.1.0 2015 年 9 月 Copyright by JCCH Security Solution Systems Co., Ltd., All Rights reserved JCCH セキュリティ ソリューション システムズ JS3 およびそれらを含むロゴは日本および他の国における株式会社 JCCH

More information

Juniper Networks Corporate PowerPoint Template

Juniper Networks Corporate PowerPoint Template Juniper SRX 日本語マニュアル 41. SSL Forward Proxy の CLI 設定 はじめに SRX340 における SSL Forward Proxy の CLI 設定ついて説明します 手順内容は SRX340 JUNOS 15.1X49-D140 にて確認を実施しております SSL Proxy 機能については SRX340 以上の機種にてサポートされています 2018 年 8

More information

講座計画書サンプル

講座計画書サンプル 2004 10 1 13:0014:30 12 () () Web 14:4518:00 - (PBL) 45 1 - - 1 1 - - - - Web - Web Web (1) PC (2) (3) (4) CVS Subversion 1 2 2004 10 8 Java Java Java 13:0014:30 Java Java Java EoD (Ease of Development)

More information

system02.dvi

system02.dvi 2003 2 2003 4 24 13:15-14:45 : IP DNS SSH SCP 1 HTTP 2 FTP TelnetGopher HTTP HTTP 2 IP 2.1 IP PC1 1 IPv4 IP 8 4 32 192.168.6.18 42 (2 32 ) IP IP LAN LAN LAN ABC 3 (Table 1) 2.2 LAN Table 1 10.0.0.010.255.255.255

More information

2008, 2009 TOSHIBA TEC CORPORATION All rights reserved

2008, 2009 TOSHIBA TEC CORPORATION All rights reserved 2008, 2009 TOSHIBA TEC CORPORATION All rights reserved 1 2 3 1 2 ... 1 1... 8... 9... 18... 24... 25... 30... 31... 34... 37 E... 67 Bluetooth BIP... 68 2... 71... 73... 100 3 ... 132... 134... 136 E...

More information

村木 由梨香 日本マイクロソフト セキュリティ レスポンス チーム セキュリティ プログラム マネージャー 略歴 Active Directory, Network, Crypto, PKI 関連を専門とした Windows エンジニアを経て現職 セキュリティの意識向上活動 インシデント対応に従事

村木 由梨香 日本マイクロソフト セキュリティ レスポンス チーム セキュリティ プログラム マネージャー 略歴 Active Directory, Network, Crypto, PKI 関連を専門とした Windows エンジニアを経て現職 セキュリティの意識向上活動 インシデント対応に従事 Windows, Internet Explorer セキュリティのいま 日本マイクロソフトセキュリティレスポンスチームセキュリティプログラムマネージャー 村木由梨香 村木 由梨香 日本マイクロソフト セキュリティ レスポンス チーム セキュリティ プログラム マネージャー 略歴 Active Directory, Network, Crypto, PKI 関連を専門とした Windows エンジニアを経て現職

More information

通信プロトコルの認証技術

通信プロトコルの認証技術 PKI IPsec/SSL IETF (http://www.netcocoon.com) 2004.12.9 IPsec ESP,AH,IPComp DOI:SA IKE SA ISAKMP IKE ESP IKE AH DOI Oakley ISAKMP IPComp SKEME IPsec IPv4TCP + IPv6TCP + IPv4 AH TCP + IPv6 AH + TCP IPv4

More information

IW2003 PKI 応用編 富士ゼロックス株式会社稲田龍 Copyright 富士ゼロックス株式会社

IW2003 PKI 応用編 富士ゼロックス株式会社稲田龍 Copyright 富士ゼロックス株式会社 IW2003 PKI 応用編 富士ゼロックス株式会社稲田龍 PKI アプリケーション アプリケーションの動向 HTTPS S/MIME 電子署名アプリケーション 無線 LAN での認証 (802.1X 認証 ) HTTPS SSL を使い通信路の暗号化と接続先 ( 元 ) の認証を行う Internet Explorer/Netscape Navigator

More information

21 Key Exchange method for portable terminal with direct input by user

21 Key Exchange method for portable terminal with direct input by user 21 Key Exchange method for portable terminal with direct input by user 1110251 2011 3 17 Diffie-Hellman,..,,,,.,, 2.,.,..,,.,, Diffie-Hellman, i Abstract Key Exchange method for portable terminal with

More information

証明書検証サーバ

証明書検証サーバ (Certificate Validation Server) 2007/11/1 Version 1.09 (Certificate Validation Server) 1 2006/4/27 0.930 2 2007/5/8 0.940 / 3 2007/5/15 0.950 Solaris TOE Linux TOE ST 4 2007/5/23 0.960 ASE ( : ASE001-01)

More information

untitled

untitled CA 04 1,360 100.8 0.1 83 34,176 7.61 0.40 51,532 1.3 322,736 5.9 05 1,369 100.0 0.8 80 57,269 7.86 0.43 55,001 6.7 311,107 3.6 06 1,370 99.8 0.2 83 48,250 7.73 0.46 56,369 2.5 319,129 2.6 06/ 1-3 99.4

More information

rzamhpdf.ps

rzamhpdf.ps IBM i 7.2 IBM i 7.2 43 IBM i 7.2 ( 5770-SS1) RISC CISC IBM IBM i Version 7.2 Security Service Tools 1 2014.4 Copyright IBM Corporation 2003, 2013. .............. 1 IBM i 7.2............ 1 PDF.........

More information

Mobilelron® Virtual Smartphone Platform 向けDigiCert® 統合ガイド

Mobilelron® Virtual Smartphone Platform 向けDigiCert® 統合ガイド Mobilelron Virtual Smartphone Platform DigiCert 2015 11 18 Mobilelron Virtual Smartphone Platform DigiCert 2015 11 18 Copyright 2018 DigiCert, Inc. All rights reserved. DigiCert DigiCert DigiCert, Inc.

More information

untitled

untitled 1 2 1 3 IR... 4 2 5 1990 Surety 1990 2000 IETFISO/IEC 6 3 7 ISO/IEC 18014 IETF RFC 3161 Time-stamp Protocol ETSI TS 102 023RFC 3628) ETSI TS 101 861 8 4 (TSA, Time Stamping Authority) 1ab5c98f... 1ab5c98f...

More information

( )

( ) NAIST-IS-MT0851100 2010 2 4 ( ) CR CR CR 1980 90 CR Kerberos SSH CR CR CR CR CR CR,,, ID, NAIST-IS- MT0851100, 2010 2 4. i On the Key Management Policy of Challenge Response Authentication Schemes Toshiya

More information

wide97.dvi

wide97.dvi 11 321 1 CA (Certication Authority) ( ) 1 3 CA S/MIME[104][105][106] SSL[107](Secure Sockets Layer), TLS[108](Transport Layer Security) WWW Netscape Microsoft Web SSL CA CA CA CA CA CA CA members only

More information

Oracle Lite Tutorial

Oracle Lite Tutorial GrapeCity -.NET with GrapeCity - FlexGrid Creation Date: Nov. 30, 2005 Last Update: Nov. 30, 2005 Version: 1.0 Document Control Internal Use Only Author Hiroshi Ota Change Logs Date Author Version Change

More information

IW2002-B5 1 Internet Week ( ) 9:30 12:30 ( ) Copyright 2002 All Rights Reserved, by Seiji Kumagai ADSL FTTH 24 IP LAN

IW2002-B5 1 Internet Week ( ) 9:30 12:30 ( ) Copyright 2002 All Rights Reserved, by Seiji Kumagai ADSL FTTH 24 IP LAN 1 Internet Week 2002 20021218() 9:3012:30 () kuma@isid.co.jp ADSLFTTH 24 IP LAN LAN LAN 2 1 ? 3? 4 e-japan 20053000 20051000 2 IP»» 5 CATV DSL FTTH LAN 6 620(20029) CATV 180DSL 422FTTH 12 14 3 MP3CD CM

More information

http://www.ipa.go.jp/security/ Contents 1. NIST 2010 2. NISC 3. CRYPTREC 2008 10 28 Copyrignt 2008, IPA all right reserved. 2 1977 MAC) PKI PKI PKI: (Public Key Infrastructure) 2008 10 28 Copyrignt 2008,

More information

学校では教えてくれないアセットバンドル

学校では教えてくれないアセットバンドル Unity Technologies Japan Developer Relationship Engineer Yusuke Ebata Unity 5.3 Unity ICON:designed by Freepik 1 AssetBundle.CreateFromMemory AssetBundle.CreateFromFile WWW.LoadFromCacheOrDownload LoadFromCacheOrDonwload

More information

橡matufw

橡matufw 3 10 25 3 18 42 1 2 6 2001 8 22 3 03 36 3 4 A 2002 2001 1 1 2014 28 26 5 9 1990 2000 2000 12 2000 12 12 12 1999 88 5 2014 60 57 1996 30 25 205 0 4 120 1,5 A 1995 3 1990 30 6 2000 2004 2000 6 7 2001 5 2002

More information

O

O 11 2 1 2 1 1 2 1 80 2 160 3 4 17 257 1 2 1 2 3 3 1 2 138 1 1 170 O 3 5 1 5 6 139 1 A 5 2.5 A 1 A 1 1 3 20 5 A 81 87 67 A 140 11 12 2 1 1 1 12 22 1 10 1 13 A 2 3 2 6 1 B 2 B B B 1 2 B 100 B 10 B 3 3 B 1

More information

NetAttest EPS設定例

NetAttest EPS設定例 認証連携設定例 連携機器 Citrix NetScalar Case 証明書と ID Password によるハイブリッド認証 Rev1.0 株式会社ソリトンシステムズ - 1-2013/10/8 はじめに 本書について本書は NetAttest EPS と Citrix 社製 VPN ゲートウェイ NetScalar との証明書 +ID Password 認証連携について記載した設定例です 各機器の管理

More information

WP_8021X Authentication_21MAY2012

WP_8021X Authentication_21MAY2012 OS X 10.7.3 ios 5.1 2012 6 5 ...3 Apple...7...10...17 A...18 B...25 C Active Directory...32 LAN LAN RSA EAP Extensible Authentication Protocol Kerberos EAP EAPoL EAP over LAN EAP RADIUS Remote Authentication

More information

取扱説明書 [d-01H]

取扱説明書 [d-01H] d-01h 1 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 2 19 3 1 2 4 3 20 4 21 1 2 3 4 22 1 2 1 2 1 23 1 1 2 24 25 26 1 1 1 2 27 1 2 3 28 29 1 2 1 2 3 30 1 2 3 4 5 1 2 3 31 1 2 3 4 32 33 34 1 35 1 36 37

More information

FileMaker Server Getting Started Guide

FileMaker Server Getting Started Guide FileMaker Server 13 2007-2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento FileMaker, Inc. FileMaker WebDirect Bento FileMaker,

More information

Insight International

Insight International Section : Security system Name : Tomohiko. Yoshida Date : 12/08/2009 Agenda --- JRF Work Shop 2009 --- What is TPM HW SW Use case Introduction of the demo Question and Answer 2 What is TPM Trusted Platform

More information

iPhone/iPad/Android(TM) とベリサイン アイデンティティプロテクション(VIP)エンタープライズゲートウェイとの組み合わせによるL2TP+IPsecのワンタイムパスワード設定例

iPhone/iPad/Android(TM) とベリサイン  アイデンティティプロテクション(VIP)エンタープライズゲートウェイとの組み合わせによるL2TP+IPsecのワンタイムパスワード設定例 VeriSign VIP VIP + AR VIP VIP AR VPN iphone ipad Apple Inc. iphone Android Google Inc. Copyright 2011 Allied Telesis K.K. All Rights Reserved. VIP AR User Copyright 2011 Allied Telesis K.K. All Rights

More information

FUJITSU Cloud Service K5 API Management WebAPI リファレンス第 1.0 版 発行日 2017 年 1 月 All Right Reserved, Copyright 富士通株式会社 本書の無断複製 転載を禁じます

FUJITSU Cloud Service K5 API Management WebAPI リファレンス第 1.0 版 発行日 2017 年 1 月 All Right Reserved, Copyright 富士通株式会社 本書の無断複製 転載を禁じます FUJITSU Cloud Service K5 API Management WebAPI リファレンス 第 1.0 版 富士通株式会社 FUJITSU Cloud Service K5 API Management WebAPI リファレンス第 1.0 版 発行日 2017 年 1 月 All Right Reserved, Copyright 富士通株式会社 本書の無断複製 転載を禁じます 更新履歴

More information

mahoro/2011autumn/crypto/

mahoro/2011autumn/crypto/ http://www.ss.u-tokai.ac.jp/ mahoro/2011autumn/crypto/ 1 1 2011.9.29, ( ) http://www.ss.u-tokai.ac.jp/ mahoro/2011autumn/crypto/ 1.1 1.1.1 DES MISTY AES 1.1.2 RSA ElGamal 2 1 1.2 1.2.1 1.2.2 1.3 Mathematica

More information

Epson Print Admin

Epson Print Admin Epson Print Admin NPD5368-02 JA Epson Print Admin Epson Print Admin Epson Print Admin Epson Print Admin Epson Open Platform Epson Open Platform Epson Print Admin Epson Print Admin Epson Print Admin Epson

More information

Windows PowerShell 用スクリプト形式編 改版履歴 版数 日付 内容 担当 V /4/1 初版 NII V /2/26 動作環境の変更に伴う修正 NII V /8/21 タイムスタンプ利用手順の追加 NII 目次 1. コード署名用証明

Windows PowerShell 用スクリプト形式編 改版履歴 版数 日付 内容 担当 V /4/1 初版 NII V /2/26 動作環境の変更に伴う修正 NII V /8/21 タイムスタンプ利用手順の追加 NII 目次 1. コード署名用証明 Windows PowerShell 用スクリプト形式編 改版履歴 版数 日付 内容 担当 V.1.0 2015/4/1 初版 NII V.0 2018/2/26 動作環境の変更に伴う修正 NII V.1 2018/8/21 タイムスタンプ利用手順の追加 NII 目次 1. コード署名用証明書の利用 1-1. 前提条件 1- PKCS#12 ファイルの作成 1-2-1. 事前準備 1-2- PKCS#12

More information