untitled

Size: px
Start display at page:

Download "untitled"

Transcription

1 API API Part 1 10API 25 10API Part2 Copyright (c) 2004 NPO Page 2 Copyright (C) 2004 NPO JNSA 1

2 API API Wassenaar API Copyright (c) 2004 NPO Page 4 Copyright (C) 2004 NPO JNSA 2

3 IC 1 I II I : II : Copyright (c) 2004 NPO Page (7) Copyright (c) 2004 NPO Page 6 Copyright (C) 2004 NPO JNSA 3

4 API API Copyright (c) 2004 NPO Page 7 API FAQ Copyright (c) 2004 NPO Page 8 Copyright (C) 2004 NPO JNSA 4

5 Copyright (c) 2004 NPO Page 9 3 API API Copyright (c) 2004 NPO Page 10 Copyright (C) 2004 NPO JNSA 5

6 DES AES CBC MACCBC-MAC HMAC MD5 SHA-1 RSA OAEP RSA DSS PSS Copyright (c) 2004 NPO Page 12 Copyright (C) 2004 NPO JNSA 6

7 JIS Copyright (c) 2004 NPO Page DES 56 bit 64 bit NIST DES-EDE 112/168 bit 64 bit AES bit 128 bit RC5 RSA DSI bit bit AES Triple DES DES Copyright (c) 2004 NPO Page 14 Copyright (C) 2004 NPO JNSA 7

8 ECB Copyright (c) 2004 NPO Page 15 ECB a8f0b88cd90324bc ef8d9b9cd378e89 c01200ef12546de d efef b901c99de01435cdf09eade489f9ad87 389efb8c32d9482 d12311f023657ef2 a8f0b88cd90324bcf09eade489f9ad87 c01200ef12546de d efef Copyright (c) 2004 NPO Page 16 Copyright (C) 2004 NPO JNSA 8

9 CBC Cipher Block Chaining. Chaining DES NIST ECB Electronic Code Book CBC Cipher Block Chaining CFB Cipher Feed Back OFB Output Feed Back PCBC error-propagating CBC Copyright (c) 2004 NPO Page 17 CBC Copyright (c) 2004 NPO Page 18 Copyright (C) 2004 NPO JNSA 9

10 CBC a8f0b88cd90324bc ef8d9b9cd378e89 c01200ef12546de d efef b901c99de01435cd f09eade489f9ad87 389efb8c32d b89d92aef09 a8f0b88cd90324bcf09eade489f9ad87 c01200ef12546de d efef Copyright (c) 2004 NPO Page DES2 56 Copyright (c) 2004 NPO Page 20 Copyright (C) 2004 NPO JNSA 10

11 DES DES DESAES Copyright (c) 2004 NPO Page 21 MAC MAC MAC MACMAC CBC-MAC HMAC (Hash-based MAC) CBC-MAC CBC HMAC Copyright (c) 2004 NPO Page 22 Copyright (C) 2004 NPO JNSA 11

12 CBC-MAC MAC IV 92783b89d92aef09 MAC a8f0b88cd90324bc ef8d9b9cd378e89 c01200ef12546de d efef MAC IV 92783b89d92aef c78b70c0198 a8f0b88cd90324bc f09eade489f9ad87 389efb8c32d9482 d12311f023657ef Copyright (c) 2004 NPO Page 23 HMAC Copyright (c) 2004 NPO Page 24 Copyright (C) 2004 NPO JNSA 12

13 collision X Y Copyright (c) 2004 NPO Page 25 MD5 SHA-1 SHA-1 MD5 NIST RSA DSI 20 byte 16 byte Copyright (c) 2004 NPO Page 26 Copyright (C) 2004 NPO JNSA 13

14 collision MD5 SHA-1 10 MD5SHA-1 Crypto 2004 (August 17, 2004) MD5 is fatally wounded; its use will be phased out. SHA-1 is still alive but the vultures are circling. (E.W.Felton, Princeton Univ., August 18, 2004) [] MD5SHA-1 SHA-1 Copyright (c) 2004 NPO Page RSA Copyright (c) 2004 NPO Page 28 Copyright (C) 2004 NPO JNSA 14

15 RSA Copyright (c) 2004 NPO Page 29 RSA n n p,q n = p q Rabin n (p, q) RSA n=pq ex = 1 mod (p 1)(q 1) RSA e x Copyright (c) 2004 NPO Page 30 Copyright (C) 2004 NPO JNSA 15

16 b = a x x = log a b b x Copyright (c) 2004 NPO Page 31 RSA RSA RSA RSA 1998 OAEPRSA Copyright (c) 2004 NPO Page 32 Copyright (C) 2004 NPO JNSA 16

17 RSA RSAPKCS #1 RSA RSA OK/Error RSA OK/Error RSA SSL Copyright (c) 2004 NPO Page 33 OAEP OAEP Optimal Asymmetric Encryption Padding. RSA PKCS#1 Copyright (c) 2004 NPO Page 34 Copyright (C) 2004 NPO JNSA 17

18 RSARSA DSS DSS Copyright (c) 2004 NPO Page 35 RSA RSA Copyright (c) 2004 NPO Page 36 Copyright (C) 2004 NPO JNSA 18

19 RSA RSA Copyright (c) 2004 NPO Page 37 PSS DSS RSA PSS Pseudo-random Signature Scheme. Copyright (c) 2004 NPO Page 38 Copyright (C) 2004 NPO JNSA 19

20 API API SSL/TLS / Copyright (c) 2004 NPO Page 40 Copyright (C) 2004 NPO JNSA 20

21 //Example based on JCE Cipher e = Cipher.getInstance( DES/CBC/SSL3Padding ); /*SSLDES CBC / Cipher */ e.init(encrypt_mode, mykey); /*Cipher mykey */ e.dofinal(cleartext, offset, length, ciphertext); /* cleartext ciphertext */ Copyright (c) 2004 NPO Page 41 //Example based on JCE AlgorithmParameters iv; iv = AlgorithmParameters.getInstance( DES/CBC/SSL3Padding); iv.init(encotediv); // Cipher d = Cipher.getInstance( DES/CBC/SSL3Padding ) d.init(decrypt_mode, mykey, iv) //Cipher d.dofinal(ciphertext, offset, length, cleartext); //ciphertext cleartext Copyright (c) 2004 NPO Page 42 Copyright (C) 2004 NPO JNSA 21

22 SSL //Example based on JSSE SSLSocketFactory factory = (SSLSocketFactory)SSLSocketFactory.getDefault(); SSLSocket securesocket = (SSLSocket)factory.createSocket(host, port); // SSLSocket securesocket.setenablesesstioncreation(true); //SSLSocket String[] enabledcs = securesocket.getenabledciphersuites(); // CipherSuite BOOLEAN clientauthnecessary = securesocket.getneedclientauth(); // securesocket.starthandshake(); // String[] supportedcs = securesocket.getsupportedciphersuite(); // CipherSuite Copyright (c) 2004 NPO Page 43 SSL //Example based on JSSE OutputStream os = securesocket.getoutputstream(); // os InputStream is = securesocket.getinputstream(); //is Copyright (c) 2004 NPO Page 44 Copyright (C) 2004 NPO JNSA 22

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

<4D F736F F D20838A B F955C8E8682A982E796DA8E9F914F5F A815B FD B A5F E646F63>

<4D F736F F D20838A B F955C8E8682A982E796DA8E9F914F5F A815B FD B A5F E646F63> 2008 年度版リストガイド ( メッセージ認証コード ) 平成 21 年 3 月 独立行政法人情報通信研究機構独立行政法人情報処理推進機構 1 1 1.1............................. 1 1.1.1............................ 1 1.1.2....................... 1 1.1.3...........................

More information

ASF-01

ASF-01 暗号モジュール試験及び認証制度 (JCMVP) 承認されたセキュリティ機能に関する仕様 平成 26 年 4 月 1 日独立行政法人情報処理推進機構 ASF-01 A p p r o v e d S e c u r i t y F u n c t i o n s 目次 1. 目的... 1 2. 承認されたセキュリティ機能... 1 公開鍵... 1 共通鍵... 3 ハッシュ... 4 メッセージ認証...

More information

°Å¹æ¥Ï¥Ã¥·¥å´Ø¿ô

°Å¹æ¥Ï¥Ã¥·¥å´Ø¿ô 1 / 37 (Cryptographic Hash Functions) H : {0, 1} {0, 1} l (Unkeyed hash function) (MDC: Manipulation Detection Code) (Keyed hash function) (MAC: Message Authentication Code) 2 / 37 OAEP (One-wayness) (Preimage

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

インターネット概論 第07回(2004/11/12) 「SFC-CNSの現状」

インターネット概論 第07回(2004/11/12) 「SFC-CNSの現状」 / / / : AES 128bit) 196bit 256bit 128bit) 10 12 14 196bit) 12 12 14 256bit) 14 14 14 (n, e) (n, d) M M : 2 ( 101 5) [e ] [e ] n = p * q (p q ) (n) = (p-1)(q-1) gcd( (n), e) = 1; 1 < e < (n) d = e^-1

More information

Block cipher

Block cipher 18 12 9 1 2 1.1............................... 2 1.2.................. 2 1.3................................. 4 1.4 Block cipher............................. 4 1.5 Stream cipher............................

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

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

暗号方式委員会報告(CRYPTRECシンポジウム2012)

暗号方式委員会報告(CRYPTRECシンポジウム2012) 暗号方式委員会活動報告 安全性 実装性能評価リスト入りまでの基本的な流れ 事務局選出暗号 公募暗号技術 現リスト掲載暗号 次期リスト 電子政府推奨暗号リスト 推奨候補暗号リスト 運用監視暗号リスト 現リストのカテゴリ 技術分類公開鍵暗号共通鍵暗号その他 署名守秘鍵共有 64ビットブロック暗号 128 ビットブロック暗号 ストリーム暗号 ハッシュ関数 擬似乱数生成系 現リスト : 公開鍵暗号 技術分類

More information

<4D F736F F D B B BB2D834A836F815B82D082C88C60202D B2E646F63>

<4D F736F F D B B BB2D834A836F815B82D082C88C60202D B2E646F63> 情報セキュリティの理論と技術 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. http://www.morikita.co.jp/books/mid/082951 このサンプルページの内容は, 初版 1 刷発行当時のものです. i 2002 2003 2004 IC IC IC IC 5 IC IC IC IC 2 5 6 IC IC ii. IC... 2005

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

スライド 1

スライド 1 IPA 2010 3 25 1 1 / / 2 (DRBG) DRBG NIST SP800-90 2 1 3 JCMVP 2009 1 JCATT AES 15 4 5 OK/NG OK ( ) ( ) 6 JCMVP JCATT JCATT http://www.ipa.go.jp/security/jcmvp/open_documents.html 7 332 (DES, Triple-DES,

More information

「産業上利用することができる発明」の審査の運用指針(案)

「産業上利用することができる発明」の審査の運用指針(案) 1 1.... 2 1.1... 2 2.... 4 2.1... 4 3.... 6 4.... 6 1 1 29 1 29 1 1 1. 2 1 1.1 (1) (2) (3) 1 (4) 2 4 1 2 2 3 4 31 12 5 7 2.2 (5) ( a ) ( b ) 1 3 2 ( c ) (6) 2. 2.1 2.1 (1) 4 ( i ) ( ii ) ( iii ) ( iv)

More information

(Requirements in communication) (efficiently) (Information Theory) (certainly) (Coding Theory) (safely) (Cryptography) I 1

(Requirements in communication) (efficiently) (Information Theory) (certainly) (Coding Theory) (safely) (Cryptography) I 1 (Requirements in communication) (efficiently) (Information Theory) (certainly) (oding Theory) (safely) (ryptography) I 1 (Requirements in communication) (efficiently) (Information Theory) (certainly) (oding

More information

TLS _final

TLS _final TLS 1.3 IoT 2018/12/06, kojo@wolfssl.com wolfssl Japan GK 1 woflssl 2 3 : 200 E H : 200 I N Q : 2 / MSJ Q : 20. : 2.. # I N TC L. 00 0 L P : 2 T T 4 5 6 wolfssl Japan 7 108-6028 2-15-1 A 28F 050-3698-1916

More information

TLS/SSLの暗号利用に関する現状と課題

TLS/SSLの暗号利用に関する現状と課題 TLS/SSL の暗号利用に関する 現状と課題について NTT 情報流通プラットフォーム研究所情報セキュリティプロジェクト神田雅透 Internet Week 2008 にて どのように変わったか? ( あるいは変わらなかったか?) SSL/TLS は暗号化技術? 暗号化は SSL で の一言で片づけられていないか ~ どんな暗号を使っているか認識されていないのに 適切な設定 がなされているか ~

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

Proposal of addition of new cipher suites to TLS to support Camellia, EPOC, and PSEC Shiho Moriai NTT Laboratories th

Proposal of addition of new cipher suites to TLS to support Camellia, EPOC, and PSEC Shiho Moriai NTT Laboratories th Proposal of addition of new cipher suites to TLS to support Camellia, EPOC, and PSEC Shiho Moriai shiho@isl.ntt.co.jp NTT Laboratories 128-bit Block Cipher Camellia Kazumaro Aoki * Tetsuya Ichikawa Masayuki

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

ATR-01-D

ATR-01-D (JCMVP) 24 2 29 ATR-01-D Cryptographic Algorithm Implementation Testing Requirements 1 1 1.1....................... 1 1.2....................................... 2 2 3 2.1.....................................

More information

°Å¹æµ»½Ñ¤Î¿ôÍý¤È¤·¤¯¤ß --- ¥á¡¼¥ë¤Ç¤¸¤ã¤ó¤±¤ó¡©¤¹¤ëÊýË¡ ---

°Å¹æµ»½Ñ¤Î¿ôÍý¤È¤·¤¯¤ß  --- ¥á¡¼¥ë¤Ç¤¸¤ã¤ó¤±¤ó¡©¤¹¤ëÊýË¡ --- .... 1 22 9 17 1 / 44 1 (9/17) 2 (10/22) P2P 3 (11/12) 2 / 44 ogawa is.uec.ac.jp http://www.quest.is.uec.ac.jp/ogawa/ http://www.is.uec.ac.jp/ 3 / 44 ARPANet (1969) 4 / 44 M. Blum ( ), Coin Flipping by

More information

ICカードに利用される暗号アルゴリズムの安全性について:ENV仕様の実装上の問題点を中心に

ICカードに利用される暗号アルゴリズムの安全性について:ENV仕様の実装上の問題点を中心に IC IC IC ICIC EMVEMV IC EMVIC EMV ICEMVRSAkey TDES TDES-MAC E-mail: masataka.suzuki@boj.or.jp NTTE-mail: kanda.masayuki@lab.ntt.co.jp IC IC IC IC EMV JCCA ICJCCA ICEMV EMVIC EMV EMV EMVEMVCo EMV EMV EMVICIC

More information

untitled

untitled 6000 4 10.5% 13.1% 8.2% [ 2005 ] IT 8 6.5% 2005 6855 6584 1.7 30% ISMS SOX 18 19 SOX 2007 2008 1 2 3 4 ASP SaaS 5 6 6.1 PCI DSS 6.2 6.3 ISO27004 ISMS 6.4 6.5 6.6 NIST SP 19

More information

PowerPoint Presentation

PowerPoint Presentation 2009 年 2 月 18 日 CRYPTREC ワークショップ 暗号利用モードの最新動向 富士通研究所下山武司 暗号利用モードの経緯 1 ブロック暗号 (ECB モード ) 平文 Enc 暗号文 鍵 同じ平文に対しては同じ暗号文 乱数列と識別可能 ( 右に例示 ) 原画 ECB モード暗号化 出典 http://en.wikipedia.org/wiki/block_cipher_modes_of_operation

More information

2.SSL/TLS と暗号プロトコルの安全性 恒久的に噴出する脆弱性との戦い クライアント ClientKeyExchange Verify ServerKeyExchange Request Done Request サーバ X Master Secret CCS MAC 図 -1 図

2.SSL/TLS と暗号プロトコルの安全性 恒久的に噴出する脆弱性との戦い クライアント ClientKeyExchange Verify ServerKeyExchange Request Done Request サーバ X Master Secret CCS MAC 図 -1 図 小特集暗号と社会の素敵な出会い 2.SSL/TLS と暗号プロトコルの安全性 恒久的に噴出する脆弱性との戦い 基応専般 須賀祐治 (( 株 ) インターネットイニシアティブ / 筑波大学 ) SSL Secure Socket Layer /TLS Transport Layer Security SSL/TLS TLS TLS IETF Internet Engineering Task Force

More information

21 22 4 5 23 3 11 24 4 23 FAQ 2

21 22 4 5 23 3 11 24 4 23 FAQ 2 21 22 4 5 23 3 11 24 4 23 FAQ 2 3 4 A 15 5 8 19 13 19 5 6 14 5 16 5 9 20 22 18 B 29 30 5 17 47 51 26 18 21 22 27 5 3 48 103 11 3 10 C 7 22 44 103 107 117 127 7 18 5 7 8 5 1 2011 5 24 2 6 22 3 7 27 4 9

More information

[3], [4], [5] Texas Instruments AM3358 [6] AM3358 ARM Cortex-A8 CPU AM3358 OS Texas Instruments Linux OS Android OS Linux OS OpenSSL [7] OpenSSL AM335

[3], [4], [5] Texas Instruments AM3358 [6] AM3358 ARM Cortex-A8 CPU AM3358 OS Texas Instruments Linux OS Android OS Linux OS OpenSSL [7] OpenSSL AM335 1,a) 2 2 2014 12 5, 2015 6 5 AM3358 CPU Cryptographic Operation Load-balancing between Cryptographic Module and CPU Yohei Kaneko 1,a) Takamichi Saito 2 Hiroaki Kikuchi 2 Received: December 5, 2014, Accepted:

More information

IPSEC-VPN IPsec(Security Architecture for Internet Protocol) IP SA(Security Association, ) SA IKE IKE 1 1 ISAKMP SA( ) IKE 2 2 IPSec SA( 1 ) IPs

IPSEC-VPN IPsec(Security Architecture for Internet Protocol) IP SA(Security Association, ) SA IKE IKE 1 1 ISAKMP SA( ) IKE 2 2 IPSec SA( 1 ) IPs IPSEC VPN IPSEC-VPN IPsec(Security Architecture for Internet Protocol) IP SA(Security Association, ) SA IKE 1 2 2 IKE 1 1 ISAKMP SA( ) IKE 2 2 IPSec SA( 1 ) IPsec SA IKE Initiator Responder IPsec-VPN ISAKMP

More information

TLS 1.2 TLS TLS iijlab-seminar pd

TLS 1.2 TLS   TLS iijlab-seminar pd TLS 1.3 2018.2.14 @kazu_yamamoto 1 TLS 1.2 TLS https://www.iij.ad.jp/dev/report/iir/031/03_01.html TLS 1.3 http://seminar-materials.iijlab.net/iijlab-seminar/ iijlab-seminar-20170110.pdf HTTPS SEO https://employment.en-japan.com/engineerhub/

More information

Microsoft PowerPoint pptx

Microsoft PowerPoint pptx 情報セキュリティ 第 4 回 2011 年 5 月 13 日 ( 金 ) 1/24 本日学ぶこと 使い捨てパッド DES (Data Encryption Standard) AES (Advanced Encryption Standard) ブロック暗号のモード 2 ( 復習 ) 暗号系 平文 平文 暗号化 暗号化鍵 復号鍵 復号 盗聴可能な通信路 暗号文 暗号文 3 ( 復習 ) 単一換字暗号

More information

2004 Copyright by Tatsuo Minohara Programming with Mac OS X in Lambda 21 - page 2

2004 Copyright by Tatsuo Minohara Programming with Mac OS X in Lambda 21 - page 2 Living with Mac OS X in Lambda 21 2004 Copyright by Tatsuo Minohara Programming with Mac OS X in Lambda 21 - page 1 2004 Copyright by Tatsuo Minohara Programming with Mac OS X in Lambda 21 - page 2 2004

More information

MacOSXLambdaJava.aw

MacOSXLambdaJava.aw Living with Mac OS X in Lambda 21 2005 Copyright by Tatsuo Minohara Programming with Mac OS X in Lambda 21 - page 1 2005 Copyright by Tatsuo Minohara Programming with Mac OS X in Lambda 21 - page 2 2005

More information

1 2 3 4 5 1 1:30 NPO 16 1 19 16 2 17-6 - 10 2008 2010 120 150 IT( ) 60 21 40-7 - - 8-10 ( ) NPO 2 10 16:40-9 - 10 ii NPO NPO ( ) ( ) 11 12 13 14 15 22 26 27 28 29 30 31 32 33 34 m3 m3

More information

03.›F“ª/‚SŒÊŁÏ“X*

03.›F“ª/‚SŒÊŁÏ“X* RSA RSA RSA GemplusCoron Naccache Stern Coron-Naccache-SternRSA ISO/IEC IC RSA Coron RSA ISO/IEC Coron-Naccache-Stern ISO/IEC JTC1/SC RSA RSARSA RSA IC GemplusCoron Naccache Stern RSA Coron-Naccache-SternCNS

More information

i ii i iii iv 1 3 3 10 14 17 17 18 22 23 28 29 31 36 37 39 40 43 48 59 70 75 75 77 90 95 102 107 109 110 118 125 128 130 132 134 48 43 43 51 52 61 61 64 62 124 70 58 3 10 17 29 78 82 85 102 95 109 iii

More information

44 4 I (1) ( ) (10 15 ) ( 17 ) ( 3 1 ) (2)

44 4 I (1) ( ) (10 15 ) ( 17 ) ( 3 1 ) (2) (1) I 44 II 45 III 47 IV 52 44 4 I (1) ( ) 1945 8 9 (10 15 ) ( 17 ) ( 3 1 ) (2) 45 II 1 (3) 511 ( 451 1 ) ( ) 365 1 2 512 1 2 365 1 2 363 2 ( ) 3 ( ) ( 451 2 ( 314 1 ) ( 339 1 4 ) 337 2 3 ) 363 (4) 46

More information

untitled

untitled e-parcel VCN-AX 3.0 for Windows April, 2017 e-parcel VCN-AX3.0 Installation Manual EP-PM-MN-0316 Copyright e-parcel Corporation All rights reserved. 1 e-parcel VCN-AX3.0 Installation Manual EP-PM-MN-0316

More information

暗号モジュール試験及び認証制度 ~ 安心して使える暗号モジュールとは ~

暗号モジュール試験及び認証制度 ~ 安心して使える暗号モジュールとは ~ 暗号モジュール試験及び認証制度 ~ 安心して使える暗号モジュールとは ~ 暗号モジュールとは何か 暗号化 USB メモリ 暗号化ネットワークルータ HSM ( ハードウェアセキュリティモジュール ) スマートカード ソフトウェア暗号ライブラリ 承認されたセキュリティ機能 をソフトウエア / ファームウエア / ハードウエアで実装したものである 承認されたセキュリティ機能 : 電子政府推奨暗号リスト等に記載され安全性の確認されたセキュリティ機能

More information

No ii

No ii 2005 6 1 2 200004 103/7-2000041037-1 3 4 5 JIS JIS X 0208, 1997 o È o http://www.pref.hiroshima.jp/soumu/bunsyo/monjokan/index.htm 200004 3 6 188030489521435 6119865 1220007 2 1659361903 3118983 16 381963

More information

ito.dvi

ito.dvi 1 2 1006 214 542 160 120 160 1 1916 49 1710 55 1716 1 2 1995 1 2 3 4 2 3 1950 1973 1969 1989 1 4 3 3.1 3.1.1 1989 2 3.1.2 214 542 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27

More information

<4D F736F F D20838A B F955C8E8682A982E796DA8E9F914F E718F9096BC816A5F E646F63>

<4D F736F F D20838A B F955C8E8682A982E796DA8E9F914F E718F9096BC816A5F E646F63> 2008 年度版リストガイド ( 電子署名 ) 平成 21 年 3 月 独立行政法人情報通信研究機構独立行政法人情報処理推進機構 1 1 1.1............................. 1 1.1.1............................ 1 1.1.2....................... 1 1.1.3...........................

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

セミナー構成 1 部概要 (13:30~14:20) 暗号アルゴリズム実装試験の概要 暗号アルゴリズム及び試験内容の説明 AES 2 部 RSA(14:30~15:30) 暗号アルゴリズム及び試験内容の説明 RSA-OAEP RSA-PSS 3 部擬似乱数生成器 (15:40~16:30) 暗号アル

セミナー構成 1 部概要 (13:30~14:20) 暗号アルゴリズム実装試験の概要 暗号アルゴリズム及び試験内容の説明 AES 2 部 RSA(14:30~15:30) 暗号アルゴリズム及び試験内容の説明 RSA-OAEP RSA-PSS 3 部擬似乱数生成器 (15:40~16:30) 暗号アル 暗号モジュールの 暗号アルゴリズム実装試験セミナー 2008 年 2 月 20 日独立行政法人情報処理推進機構セキュリティセンタ - 情報セキュリティ認証室 1 セミナー構成 1 部概要 (13:30~14:20) 暗号アルゴリズム実装試験の概要 暗号アルゴリズム及び試験内容の説明 AES 2 部 RSA(14:30~15:30) 暗号アルゴリズム及び試験内容の説明 RSA-OAEP RSA-PSS

More information

調査結果詳細 本書は SSL/TLS アプライアンス製品の暗号設定方法等の調査報告書 の 1 部分を取り出したもの である 調査の背景 調査方法等は報告書を参考にされたい 1.x.1 章記載の表 1.x.1-1 暗号設定内容 ( デフォルト ) の見方を以下に示す CipherSuite 選択優先権

調査結果詳細 本書は SSL/TLS アプライアンス製品の暗号設定方法等の調査報告書 の 1 部分を取り出したもの である 調査の背景 調査方法等は報告書を参考にされたい 1.x.1 章記載の表 1.x.1-1 暗号設定内容 ( デフォルト ) の見方を以下に示す CipherSuite 選択優先権 Barracuda Load Balancer ADC モデル 340 SSL/TLS アプライアンス製品の暗号設定方法等の調査報告書 調査結果詳細 本書は SSL/TLS アプライアンス製品の暗号設定方法等の調査報告書 の 1 部分を取り出したもの である 調査の背景 調査方法等は報告書を参考にされたい 1.x.1 章記載の表 1.x.1-1 暗号設定内容 ( デフォルト ) の見方を以下に示す

More information

ビットリアカップ2007けいはんなサイクルレースリザルト

ビットリアカップ2007けいはんなサイクルレースリザルト Page 4/30 Page 5/30 Page 6/30 Page 7/30 Page 8/30 Page 9/30 Page 10/30 Page 11/30 Page 12/30 Page 13/30 Page 14/30 Page 15/30 Page 16/30 Page 17/30 Page 18/30 Page 19/30 Page 20/30 Page 21/30 Page 22/30

More information

Page 1

Page 1 Page 1 Page 2 Page 3 Page 4 620 628 579-41 -6.7-49 -7.9 71 41 47-24 -33.3 6 15.9 11.5 6.5 8.1 36 15 22-14 -38.9 7 43.4 Page 5 277 302 23 24 12/3Q 12/4Q 13/1Q 13/2Q 13/3Q 13/4Q 14/1Q 14/2Q 14/3Q 14/4Q 15/1Q

More information

tomo_sp1

tomo_sp1 1....2 2....7...14 4....18 5....24 6....30 7....37 8....44...50 http://blog.garenet.com/tomo/ Copyright 2008 1. Copyright 2008 Copyright 2008 Copyright 2008 Copyright 2008 Copyright 2008 Copyright 2008

More information

untitled

untitled Copyright 1 Copyright 2 Copyright 3 Copyright 4 Copyright 5 Copyright 6 Copyright 7 Copyright 8 Copyright 9 Copyright 10 Copyright 11 Copyright 12 Copyright 13 Copyright 14 Copyright 15 Copyright 16 Copyright

More information

untitled

untitled 1 5,000 Copyright 1 5,000...4...4...4...4...4...4...4...5...5...5...5...5...5...6...6...6...7...8...9...9...9...10...12...12...12...12...13...14...14...14...15...15...15 Copyright 1 5,000...16...16...16...16...17...18

More information

untitled

untitled Copyright 3269 34 Copyright 3269 34 Copyright 3269 34 Copyright 3269 34 Copyright 3269 34 Copyright 3269 34 Copyright 3269 34 Copyright 3269 34 Copyright 3269 34 Copyright 3269 34 Copyright 3269 34 Copyright

More information

2. (297) 91 (365) (366) (371) (673) (938) (64) 85 (91) (631) (561) (302) (616) 63 (906) 68 (338) (714) (747) (169) (718) 62 (1,063) 67 (714) (169) (90

2. (297) 91 (365) (366) (371) (673) (938) (64) 85 (91) (631) (561) (302) (616) 63 (906) 68 (338) (714) (747) (169) (718) 62 (1,063) 67 (714) (169) (90 1. (297) 91 (365) (366) (938) (371) (673) 68 (338) (473) (864) (396) (939) (217) (616) 89 (371) (673) (91) (938) (297) 82 (302) (938) (631) (297) (616) (91) 76 (203) 81 (561) (263) (64) (644) (616) 65

More information

2. (1,009) 45 (368) (226) (133) (54) (260) 25 (446) 30 (774) (156) (805) (244) (652) 22 (128) (652) (157) (597) (805) (446) 30 (774) 35 (238) (581) (1

2. (1,009) 45 (368) (226) (133) (54) (260) 25 (446) 30 (774) (156) (805) (244) (652) 22 (128) (652) (157) (597) (805) (446) 30 (774) 35 (238) (581) (1 1. (189) 42 (133) (362) (93) (1,009) (260) (331) (189) (581) (238) (123) (140) (123) (362) (140) (238) (189) (581) (140) 41 (260) (93) (362) (1,009) (189) 21 (440) 26 (805) (597) (128) (446) (157) (362)

More information

QW-3414

QW-3414 MA1312-C P 1 2 3 A E L D E D A A E D A D D D D D E A C A C E D A A A C A C A C E E E D D D A C A C A A A A C A C A C E E C C E D D C C C E C E C C E C C C E D A C A C A C E L B B

More information

- 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - - 8 - - 9 - - 10 - - 11 - - 12 - - 13 - - 14 - - 15 - - 16 - - 17 - - 18 - - 19 - - 20 - - 21 - - 22 - - 23 - - 24 - - 25 - - 26 - - 27 - - 28 - - 29 - - 30 -

More information

2671026 7 1515 800 D 16551659 2 350 15 10 15 131817 2014.August No.800 8 16 26 6 2612 8 9 1 400 26 9 1227 3 3 4,800 5 6 8 9 1 7 8 11 800 800 800 10 26 15 20 24 26 28 29 30 31 32 6 7 8 9 10 11 12 1 26

More information

.Net CryptoAPI 機能と利用法

.Net CryptoAPI 機能と利用法 2004.8.26.NET CryptoAPI API Part 3..NET Crypto API http://www.ipa.go.jp/security/fy15/reports/sec _api/index.html Windows CryptoAPI CryptoAPI PKI CryptoAPI API CTL CryptoAPI CSP Crypto Service Provider

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

SecureWare/ 開発キット Ver5.0 セキュリティポリシ 2012 年 5 月 24 日 Version 1.96 日本電気株式会社

SecureWare/ 開発キット Ver5.0 セキュリティポリシ 2012 年 5 月 24 日 Version 1.96 日本電気株式会社 SecureWare/ 開発キット Ver5.0 セキュリティポリシ 2012 年 5 月 24 日 Version 1.96 日本電気株式会社 目次 1 概要... 1 2 モジュール概要... 1 3 暗号モジュールの仕様... 1 3.1 暗号境界... 1 3.1.1 物理的暗号境界... 1 3.1.2 論理的暗号境界... 4 3.2 動作モードとアルゴリズム... 4 3.3 ポートとインタフェース...

More information

() 3 3 2 5 3 6 4 2 5 4 2 (; ) () 8 2 4 0 0 2 ex. 3 n n =, 2,, 20 : 3 2 : 9 3 : 27 4 : 8 5 : 243 6 : 729 7 : 287 8 : 656 9 : 9683 0 : 59049 : 7747 2 : 5344 3 : 594323 4 : 4782969 5 : 4348907 6 : 4304672

More information

λ(t) (t) t ( ) (Mean Time to Failure) MTTF = 0 R(t)dt = /λ 00 (MTTF) MTTF λ = 00 MTTF= /λ MTTF= 0 2 (0 9 ) =0 7 () MTTF=

λ(t) (t) t ( ) (Mean Time to Failure) MTTF = 0 R(t)dt = /λ 00 (MTTF) MTTF λ = 00 MTTF= /λ MTTF= 0 2 (0 9 ) =0 7 () MTTF= 2003 7..2 R(t) t R(0) =, R( ) =0 λ(t) t R(t) λ(t) = R(t) dr(t) t, R(t) = exp ( λ(t)dt) dt 0 λ(t) (t) t ( ) 0 9 0 0 300 (Mean Time to Failure) MTTF = 0 R(t)dt = /λ 00 (MTTF) 00 000 MTTF λ = 00 MTTF= /λ

More information

WAGO Profibus /-833及び三菱MELSEC Q02HCPU/QJ71PB92Dのコンフィグレーション

WAGO Profibus /-833及び三菱MELSEC Q02HCPU/QJ71PB92Dのコンフィグレーション Version2.0(2009.2.6) Copyright 2008 by WAGO Kontakttechnik GmbH All rights reserved. WAGO Kontakttechnik GmbH Hansastraße 27 D-32423 Minden Phone: +49 (0) 571/8 87 0 Fax: +49 (0) 571/8 87 1 69 E-Mail:

More information

20110124-02-01

20110124-02-01 100 13 13 148 4 60 8 21 18 3 2 19 2 23 3 22 22 9 23 10 1 2 18 3 3 60.0 31.12 33.3 24.5 23.1 22.7 29 201714 22 13.310 32 12.137 11.2 65 22 20.532 27.437 28.7 18 1 46.31 81.6 20.9 23.821.4 19.0 34.9 28.9

More information

- 82 -

- 82 - - 82 - 1 2 3 4 5 6-83 - 7 3,000 100 8 9 10 11 4559 59 24 51 61 51-84 - 5373-85 - 3,000 100 3,000 12 100-86 - 1,000 44 5462-87 - 3,000 23 24 10,000 23 8,000 24 2,000 22 2,000 23 22 2,000 8,000 3,000 22

More information

NPO 1 2 3 77 4 5 6 7 21 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67

More information

勘定科目別経理セミナー

勘定科目別経理セミナー 16 8 21 2 15-1 (1) (2) (3) (4) (5) 3 (6) (7) (1) (2) (3) (1) (2) (3) 4 (4) (1) (2) (3) 5 8/1 8/30 9/20 20 (1) (2) (3) (4) 6 (1) (2) (3) (4) 7 (1) (2) (3) (4) (5) (6) 8 (1) (2) 50% (1) (2) 9 (3) (1) (2)

More information

untitled

untitled 420 40 41 100 18 6 18 61 17 1 20 29 10 12 2.0 17 4.3 12 17 400-10 65 40,438 17 24.2 19.9 15 35 60 17 60 17 1700 17 65 2 17 23 58,000 28 58,900 1 23 2.77 / 28 2.63 / 7 17 15 15 11,769 3 60 17 45,618 59.36

More information

Microsoft Word - 文書4

Microsoft Word - 文書4 5 8 NPO http://plaza.rakuten.co.jp/dassen/ http://www.youtube.com/watch?v=rcdkhqunyte 20 10 10 10 20 10 20 10 20 20 2 1 '93.5 http://youtu.be/gwrfcglitxk 7 1 13 5000 20 1000 60 550 30 20 1 9 14 3 5 50

More information

大崎市耐震改修促進計画(案)

大崎市耐震改修促進計画(案) 1 1 2 2 4 2520 5661 3 1 4 2 12 11 15 11 12 20 1 11 5 3 19781933 6 7 4 8 9 1 10 7 11 50 90 3 12 56 1 13 14 15 2 56,041 30,528 54,572 10,991 27 27 27 16 17 18 19 1 20 21 22 2 3 4 23 5 24 6 25 1-26 2 3 4

More information