亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? securitylevel2_impl.h

?? 開源CORBA中間件
?? H
?? 第 1 頁 / 共 2 頁
字號:
// -*- c++ -*-////  MICOsec --- a free CORBA Security implementation//  Copyright (C) 2000 ObjectSecurity Ltd. ////  This library is free software; you can redistribute it and/or//  modify it under the terms of the GNU Library General Public//  License as published by the Free Software Foundation; either//  version 2 of the License, or (at your option) any later version.////  This library is distributed in the hope that it will be useful,//  but WITHOUT ANY WARRANTY; without even the implied warranty of//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU//  Library General Public License for more details.////  You should have received a copy of the GNU Library General Public//  License along with this library; if not, write to the Free//  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.//  Send comments and/or bug reports to://                 micosec@objectsecurity.com//#ifndef __SECURITYLEVEL2_IMPL_H__#define __SECURITYLEVEL2_IMPL_H__#include <CORBA.h>#include <mico/ssl.h>#include <mico/intercept.h>#include <mico/security/securitylevel1_impl.h>#include <mico/security/audit_impl.h>namespace MICOSL2{    extern void _init ();    extern MICOGetOpt::OptVec acad_options;    class Current_impl;    class Credentials_impl;    class ReceivedCredentials_impl;    class TargetCredentials_impl;    class SecurityManager_impl;      class SecurityFeatures    {	CORBA::Boolean* features_;	int len_;    public:	SecurityFeatures();	~SecurityFeatures();	void	set_from_options(Security::AssociationOptions);	CORBA::Boolean	get_security_feature(Security::SecurityFeature feature);	int	length()	{ return len_; }    };    class Credentials_impl	: virtual public SecurityLevel2::Credentials    {    protected:	CORBA::Principal_ptr target_principal_;	CORBA::Object_ptr target_;    	Security::CredentialsType cred_type_;	Security::AuthenticationStatus auth_status_;	Security::MechanismType mech_;    	Security::AssociationOptions accept_options_supported_;	Security::AssociationOptions accept_options_required_;	Security::AssociationOptions invoc_options_supported_;	Security::AssociationOptions invoc_options_required_;    	SecurityFeatures features_;	Security::AssociationOptions opt_supported_;	std::string public_;	void	check_set_options(Security::AssociationOptions opts);	virtual Security::SecAttribute	get_SSL_attribute(const Security::AttributeType attrtype);    public:	Credentials_impl();	~Credentials_impl();    	virtual Security::CredentialsType	credentials_type();	virtual void	set_credentials_type(Security::CredentialsType type);	virtual Security::AuthenticationStatus	authentication_state();	virtual void	set_authentication_state(Security::AuthenticationStatus value);	virtual char*	mechanism();	virtual void	set_mechanism(const char *);    	virtual Security::AssociationOptions	accepting_options_supported();	virtual void	accepting_options_supported(Security::AssociationOptions value);	virtual Security::AssociationOptions	accepting_options_required();	virtual void	accepting_options_required(Security::AssociationOptions value);	virtual Security::AssociationOptions	invocation_options_supported();	virtual void	invocation_options_supported(Security::AssociationOptions value);	virtual Security::AssociationOptions	invocation_options_required();	virtual void	invocation_options_required(Security::AssociationOptions value);	void	options_supported(Security::AssociationOptions value); //to load options from mechanism	virtual SecurityLevel2::Credentials_ptr	copy();	virtual void	destroy();	virtual CORBA::Boolean	get_security_feature	(Security::CommunicationDirection direction,	 Security::SecurityFeature feature);	virtual Security::AttributeList*	get_attributes(const Security::AttributeTypeList& attributes);	virtual CORBA::Boolean	set_attributes	(const Security::AttributeList& requested_attributes,	 Security::AttributeList_out actual_attributes);	virtual CORBA::Boolean	refresh(const Security::Opaque& refresh_data);	virtual CORBA::Boolean	is_valid(Security::UtcT& expiry_time);	CORBA::Principal_ptr	get_principal();	void	set_principal(CORBA::Principal_ptr);    };    class ReceivedCredentials_impl	: public SecurityLevel2::ReceivedCredentials,	  public virtual MICOSL2::Credentials_impl    {    public:	ReceivedCredentials_impl(CORBA::ORB_ptr _orb);	~ReceivedCredentials_impl();	virtual Security::AssociationOptions	association_options_used();	virtual Security::DelegationState	delegation_state();	virtual Security::DelegationMode	delegation_mode();	virtual SecurityLevel2::CredentialsList*	accepting_credentials();    private:	SecurityLevel2::CredentialsList accept_cred_list_;	Security::AssociationOptions  assoc_options_used_;	Security::DelegationState del_state_;	Security::DelegationMode del_mode_;    };    class TargetCredentials_impl	: public SecurityLevel2::TargetCredentials,	  public virtual MICOSL2::Credentials_impl    {    public:	TargetCredentials_impl(CORBA::ORB_ptr _orb,CORBA::Object_ptr target);	~TargetCredentials_impl();	virtual Security::AssociationOptions	association_options_used();	virtual SecurityLevel2::CredentialsList*	initiating_credentials();    private:	SecurityLevel2::CredentialsList init_cred_list_;	Security::AssociationOptions assoc_options_used_;	Security::DelegationState del_state_;	Security::DelegationMode del_mode_;    };    class PrincipalAuthenticator_impl	: public SecurityLevel2::PrincipalAuthenticator    {    public:	PrincipalAuthenticator_impl();	PrincipalAuthenticator_impl(SecurityLevel2::SecurityManager* secman);	virtual ~PrincipalAuthenticator_impl();	void	set_manager(SecurityLevel2::SecurityManager* secman);    	virtual Security::AuthenticationStatus	authenticate	(Security::AuthenticationMethod method,	 const char* mechanism,	 const char* security_name,	 const CORBA::Any& auth_data,	 const Security::AttributeList& privileges,	 SecurityLevel2::Credentials_out creds,	 CORBA::Any_out continuation_data,	 CORBA::Any_out auth_specific_data);	virtual Security::AuthenticationStatus	continue_authentication	(const CORBA::Any& response_data,	 SecurityLevel2::Credentials_ptr creds,	 CORBA::Any_out continuation_data,	 CORBA::Any_out auth_specific_data);    	virtual Security::AuthenticationMethodList*	get_supported_authen_methods(const char* mechanism);        private:	SecurityLevel2::SecurityManager_var secman_;	Security::AuthenticationMethodList method_list_;    };    typedef SequenceTmpl<Security::AttributeTypeList*,MICO_TID_DEF> AttributeTypeListList;    class AttributeManager    {    public:	AttributeManager();	virtual ~AttributeManager();    	virtual void	init();	virtual void	add_attr_types(const Security::AttributeTypeList& attr_type_list);	void	add_attr_types(unsigned int family, int len, unsigned int* attributes);	virtual Security::AttributeTypeList*	get_family_attr_types(const Security::ExtensibleFamily& family);	Security::AttributeTypeList*	get_all_attr_types();	Security::AttributeTypeList*	filter(const Security::AttributeTypeList& attr_type_list);        private:	MICOSL2::AttributeTypeListList* p_main_list_;	CORBA::Long	find_attr_type(const Security::AttributeType& attr_type);	CORBA::Long	find_family_index(const Security::ExtensibleFamily& family);	CORBA::Long add_empty_family(const Security::ExtensibleFamily& family);    };    class MechanismPolicy_impl	: public ::SecurityLevel2::MechanismPolicy,	  virtual public MICO::Policy_impl    {    public:	MechanismPolicy_impl();	MechanismPolicy_impl(Security::MechanismTypeList* );	virtual ~MechanismPolicy_impl();	virtual Security::MechanismTypeList*	mechanisms();    	CORBA::PolicyType	policy_type()	{ return Security::SecMechanismPolicy; }	CORBA::Policy_ptr	copy ();    private:	Security::MechanismTypeList mechanisms_list_;    };    class InvocationCredentialsPolicy_impl	: public ::SecurityLevel2::InvocationCredentialsPolicy,	  virtual public MICO::Policy_impl    {    public:	InvocationCredentialsPolicy_impl();	InvocationCredentialsPolicy_impl(SecurityLevel2::CredentialsList*);	SecurityLevel2::CredentialsList*	creds();	CORBA::PolicyType	policy_type()	{ return Security::SecInvocationCredentialsPolicy; }	CORBA::Policy_ptr	copy ();    private:	SecurityLevel2::CredentialsList cred_list_;    };      class QOPPolicy_impl

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久久国产精品人| 欧美日韩五月天| 欧美极品少妇xxxxⅹ高跟鞋| 韩国女主播成人在线| 欧美videos中文字幕| 国内精品久久久久影院一蜜桃| 久久综合久久鬼色中文字| 国产乱人伦偷精品视频免下载 | 亚洲人成精品久久久久| av高清不卡在线| 一区二区日韩av| 日韩欧美综合一区| 国产福利91精品一区二区三区| 中文字幕精品一区二区精品绿巨人 | 日韩一区二区麻豆国产| 精品亚洲aⅴ乱码一区二区三区| 久久―日本道色综合久久| 成人精品国产福利| 亚洲第一久久影院| 精品久久人人做人人爰| www.爱久久.com| 亚洲精品久久嫩草网站秘色| 欧美一区二区三区视频| 国产白丝网站精品污在线入口| 亚洲日本青草视频在线怡红院| 欧美日韩午夜在线视频| 国产成人精品影视| 亚洲一区在线看| 国产亚洲精品免费| 欧美亚洲免费在线一区| 色噜噜偷拍精品综合在线| 日韩在线卡一卡二| 国产嫩草影院久久久久| 69成人精品免费视频| 成人一区在线看| 奇米综合一区二区三区精品视频| 国产精品亲子伦对白| 欧美日本韩国一区二区三区视频| 国产成人啪免费观看软件 | 天堂精品中文字幕在线| 国产日产欧美一区二区视频| 91精品中文字幕一区二区三区| av在线一区二区三区| 精品亚洲欧美一区| 亚洲影院免费观看| 中文在线一区二区| 日韩一区二区三免费高清| 91视频观看视频| 国产激情一区二区三区| 欧美a级一区二区| 亚洲夂夂婷婷色拍ww47| 欧美国产日韩在线观看| 精品国一区二区三区| 欧美日韩一二三| 91丨porny丨首页| 成人毛片老司机大片| 激情综合网天天干| 欧美a一区二区| 水野朝阳av一区二区三区| 亚洲精品免费电影| 日韩理论片中文av| 国产精品丝袜91| 中文字幕成人在线观看| 久久亚洲精精品中文字幕早川悠里| 欧美精品日日鲁夜夜添| 欧美优质美女网站| 色偷偷久久一区二区三区| av在线综合网| 91毛片在线观看| 色婷婷综合久色| 色吊一区二区三区| 在线观看日产精品| 欧美午夜电影在线播放| 欧美在线视频不卡| 欧美日韩在线综合| 欧美日韩亚洲另类| 欧美一级免费观看| 日韩欧美成人午夜| 26uuu欧美日本| 国产亚洲午夜高清国产拍精品| 26uuu精品一区二区三区四区在线| 欧美一级国产精品| 久久亚洲私人国产精品va媚药| 亚洲综合色区另类av| 一区二区高清在线| 亚洲一区二区精品久久av| 亚洲综合色丁香婷婷六月图片| 亚洲一区二区综合| 日韩电影在线一区二区| 免费一级片91| 美国三级日本三级久久99| 精品在线视频一区| 国产成人自拍在线| 色噜噜久久综合| 91精品国产91久久综合桃花| 欧美成人性战久久| 国产欧美精品日韩区二区麻豆天美| 中文字幕av免费专区久久| 亚洲欧美视频一区| 亚洲成人1区2区| 久久aⅴ国产欧美74aaa| 国产v综合v亚洲欧| 欧美特级限制片免费在线观看| 欧美日韩国产精选| 国产午夜精品一区二区三区视频| 日韩美女视频一区二区| 视频一区二区不卡| 国产91精品一区二区麻豆网站 | 日韩高清中文字幕一区| 国产麻豆一精品一av一免费| 一本大道久久精品懂色aⅴ| 67194成人在线观看| 中文字幕乱码一区二区免费| 亚洲伊人伊色伊影伊综合网| 麻豆精品蜜桃视频网站| 99久久精品费精品国产一区二区| 欧美日韩精品一区二区三区| 国产欧美日韩久久| 亚洲午夜电影在线观看| 国产精品1区二区.| 欧美日韩一区不卡| 国产欧美日本一区二区三区| 三级亚洲高清视频| av在线不卡网| 日韩免费看的电影| 亚洲免费成人av| 国产福利一区二区三区视频 | 在线一区二区三区四区五区| 精品动漫一区二区三区在线观看| 亚洲黄色小视频| 国产在线观看免费一区| 欧美日韩亚洲丝袜制服| 欧美韩国日本不卡| 麻豆中文一区二区| 欧美性生活大片视频| 国产精品视频一区二区三区不卡| 午夜精品一区在线观看| 91啪在线观看| 中文字幕av一区二区三区免费看| 日本大胆欧美人术艺术动态| 色激情天天射综合网| 中文字幕一区二区三区四区| 91九色02白丝porn| 中文在线一区二区 | 蜜臀av一区二区三区| 欧美最猛性xxxxx直播| 国产精品高潮久久久久无| 日韩电影在线免费观看| 欧美日韩一区二区三区在线看| 国产精品九色蝌蚪自拍| 国产精品一区二区久久不卡| 日韩欧美123| 青青草视频一区| 欧美精品一级二级三级| 亚洲图片欧美色图| 欧美亚洲综合久久| 夜夜嗨av一区二区三区网页| 波多野结衣视频一区| 亚洲国产精品成人综合 | 久久你懂得1024| 九九久久精品视频| 欧美成人激情免费网| 开心九九激情九九欧美日韩精美视频电影 | 91视频在线观看免费| 国产精品视频线看| 国产激情精品久久久第一区二区 | 91黄色小视频| 一区二区三区欧美视频| 在线免费亚洲电影| 亚洲一二三区视频在线观看| 欧美午夜精品一区二区三区| 亚洲午夜精品在线| 91精品国产91热久久久做人人 | 日韩欧美成人激情| 精品一区中文字幕| 精品精品欲导航| 国产成人8x视频一区二区| 国产精品国产三级国产| 91福利国产精品| 午夜精彩视频在线观看不卡| 7777精品伊人久久久大香线蕉经典版下载 | 黄页网站大全一区二区| 久久精品日产第一区二区三区高清版| 国产99久久精品| 综合久久国产九一剧情麻豆| 欧美午夜免费电影| 老司机精品视频导航| 国产欧美综合色| 色综合 综合色| 爽好多水快深点欧美视频| 欧美大片免费久久精品三p| 国产精品一区在线观看乱码| 中文字幕一区av| 欧美三级视频在线播放| 男男成人高潮片免费网站| 久久久午夜电影| 久久先锋资源网| 一本色道综合亚洲| 男女视频一区二区| 国产精品欧美一区二区三区|