⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 registeredtypes.java

📁 一个非常好的ssh客户端实现
💻 JAVA
字号:
/****************************************************************************** * * Copyright (c) 1999-2004 AppGate Network Security AB. All Rights Reserved. *  * This file contains Original Code and/or Modifications of Original Code as * defined in and that are subject to the MindTerm Public Source License, * Version 2.0, (the 'License'). You may not use this file except in compliance * with the License. *  * You should have received a copy of the MindTerm Public Source License * along with this software; see the file LICENSE.  If not, write to * AppGate Network Security AB, Otterhallegatan 2, SE-41118 Goteborg, 41121 Goteborg, SWEDEN * *****************************************************************************/package com.mindbright.security.pkcs12;import com.mindbright.asn1.ASN1OIDRegistry;public class RegisteredTypes extends ASN1OIDRegistry {        public RegisteredTypes() {	/*	 * We are dependent on pkcs7/1	 */	ASN1OIDRegistry.addModule("com.mindbright.security.pkcs7");	ASN1OIDRegistry.addModule("com.mindbright.security.pkcs1");	// Should be moved to pkcs9	// (might want to have implementations of Attribute types?)	//	// pkcs-9-at-friendlyName	put("1.2.840.113549.1.9.20", "ASN1BMPString");	// pkcs-9-at-localKeyId	put("1.2.840.113549.1.9.21", "ASN1OctetString");	// !!! TODO defined in pkcs9 (HOW represent?)	// X509 cert	put("1.2.840.113549.1.9.22.1", "ASN1OctetString");	putName("1.2.840.113549.1.9.20", "friendlyName");	putName("1.2.840.113549.1.9.21", "localKeyId");	 // KeyBag	put("1.2.840.113549.1.12.10.1.1",	    "com.mindbright.security.pkcs8.PrivateKeyInfo");	// PKCS8ShroudedKeyBag	put("1.2.840.113549.1.12.10.1.2",	    "com.mindbright.security.pkcs8.EncryptedPrivateKeyInfo");	put("1.2.840.113549.1.12.10.1.3",	    "com.mindbright.security.pkcs12.CertBag");	put("1.2.840.113549.1.12.1.1",	    "com.mindbright.security.pkcs12.PKCS12PbeParams");	put("1.2.840.113549.1.12.1.2",	    "com.mindbright.security.pkcs12.PKCS12PbeParams");	put("1.2.840.113549.1.12.1.3",	    "com.mindbright.security.pkcs12.PKCS12PbeParams");	put("1.2.840.113549.1.12.1.4",	    "com.mindbright.security.pkcs12.PKCS12PbeParams");	put("1.2.840.113549.1.12.1.5",	    "com.mindbright.security.pkcs12.PKCS12PbeParams");	put("1.2.840.113549.1.12.1.6",	    "com.mindbright.security.pkcs12.PKCS12PbeParams");	putName("1.2.840.113549.1.12.1.1", "pbeWithSHAAnd128BitRC4");	putName("1.2.840.113549.1.12.1.2", "pbeWithSHAAnd40BitRC4");	putName("1.2.840.113549.1.12.1.3", "pbeWithSHAAnd3-KeyTripleDES-CBC");	putName("1.2.840.113549.1.12.1.4", "pbeWithSHAAnd2-KeyTripleDES-CBC");	putName("1.2.840.113549.1.12.1.5", "pbeWithSHAAnd128BitRC2-CBC");	putName("1.2.840.113549.1.12.1.6", "pbewithSHAAnd40BitRC2-CBC");        // pkcs5 v1.5        put("1.2.840.113549.1.5.1",             "com.mindbright.security.pkcs12.PKCS12PbeParams");        put("1.2.840.113549.1.5.3",             "com.mindbright.security.pkcs12.PKCS12PbeParams");        putName("1.2.840.113549.1.5.1", "pbeWithMD2AndDES-CBC"); // DES 56-bit        putName("1.2.840.113549.1.5.3", "pbeWithMD5AndDES-CBC"); // DES 56-bit                // pkcs5 v2.0        put("1.2.840.113549.1.5.4",             "com.mindbright.security.pkcs12.PKCS12PbeParams");        put("1.2.840.113549.1.5.6",             "com.mindbright.security.pkcs12.PKCS12PbeParams");        put("1.2.840.113549.1.5.10",             "com.mindbright.security.pkcs12.PKCS12PbeParams");        put("1.2.840.113549.1.5.11",             "com.mindbright.security.pkcs12.PKCS12PbeParams");        putName("1.2.840.113549.1.5.4",  "pbeWithMD2AndRC2-CBC");  // RC2 64-bit        putName("1.2.840.113549.1.5.6",  "pbeWithMD5AndRC2-CBC");  // RC2 64-bit        putName("1.2.840.113549.1.5.10", "pbeWithSHA1AndDES-CBC"); // DES 56-bit        putName("1.2.840.113549.1.5.11", "pbeWithSHA1AndRC2-CBC"); // RC2 64-bit    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -