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

📄 registeredtypes.java

📁 一个非常好的ssh客户端实现
💻 JAVA
字号:
/****************************************************************************** * * Copyright (c) 1999-2003 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, SWEDEN * *****************************************************************************/package com.mindbright.security.pkcs7;import com.mindbright.asn1.ASN1OIDRegistry;public class RegisteredTypes extends ASN1OIDRegistry {        public RegisteredTypes() {	/* !!! TODO Support these too	   signedData              OBJECT IDENTIFIER ::= { pkcs-7 2 }	   signedAndEnvelopedData  OBJECT IDENTIFIER ::= { pkcs-7 4 }	   digestedData            OBJECT IDENTIFIER ::= { pkcs-7 5 }	*/	// !!! TODO find used PKI algorithms for EnvelopedData if needed	put("1.2.840.113549.1.7.1", "ASN1OctetString");	put("1.2.840.113549.1.7.3",	    "com.mindbright.security.pkcs7.EnvelopedData");	put("1.2.840.113549.1.7.6",	    "com.mindbright.security.pkcs7.EncryptedData");	// Move to somewhere else?	// OIW.secsig SHA1	put("1.3.14.3.2.26", "ASN1Null");	// RSA MD5	put("1.2.840.113549.2.5", "ASN1Null");	// RSA MD2	put("1.2.840.113549.2.2", "ASN1Null");	// Teletrust.alg RIPEMD160	put("1.3.36.3.2.1", "ASN1Null");	putName("1.3.14.3.2.26", "SHA1");	putName("1.2.840.113549.2.5", "MD5");	putName("1.2.840.113549.2.2", "MD2");	putName("1.3.36.3.2.1", "RIPEMD160");    }}

⌨️ 快捷键说明

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