(file) Return to AuthenticationInfoRep.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/AuthenticationInfoRep.cpp between version 1.5 and 1.7.4.1

version 1.5, 2003/08/11 22:10:18 version 1.7.4.1, 2004/04/07 19:45:56
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2003////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001, 2002 BMC Software, Hewlett-Packard Company, IBM,  // Copyright (c) 2000, 2001, 2002  BMC Software, Hewlett-Packard Development
 // The Open Group, Tivoli Systems  // Company, L. P., IBM Corp., The Open Group, Tivoli Systems.
   // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L. P.;
   // IBM Corp.; EMC Corporation, The Open Group.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 23 
Line 25 
 // //
 // Author:  Nag Boranna, Hewlett-Packard Company(nagaraja_boranna@hp.com) // Author:  Nag Boranna, Hewlett-Packard Company(nagaraja_boranna@hp.com)
 // //
 // Modified By:  // Modified By: Jair Santos, Hewlett-Packard Company (jair.santos@hp.com)
   //              Heather Sterling, IBM (hsterl@us.ibm.com)
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 31 
Line 34 
 #include <Pegasus/Common/Tracer.h> #include <Pegasus/Common/Tracer.h>
 #include "AuthenticationInfoRep.h" #include "AuthenticationInfoRep.h"
  
   #ifdef PEGASUS_HAS_SSL
       #include <Pegasus/Common/TLS.h>
   #endif
   
 PEGASUS_USING_STD; PEGASUS_USING_STD;
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
Line 39 
Line 46 
 AuthenticationInfoRep::AuthenticationInfoRep(Boolean flag) AuthenticationInfoRep::AuthenticationInfoRep(Boolean flag)
     :     :
     _authUser(String::EMPTY),     _authUser(String::EMPTY),
       _authPassword(String::EMPTY),
     _authChallenge(String::EMPTY),     _authChallenge(String::EMPTY),
     _authSecret(String::EMPTY),     _authSecret(String::EMPTY),
     _privileged(false),     _privileged(false),
Line 52 
Line 60 
     _securityAssoc = NULL;     _securityAssoc = NULL;
 #endif #endif
  
   #ifdef PEGASUS_HAS_SSL
       _peerCertificate = NULL;
       _certificateStatus = 0;
   #endif
   
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
 } }
  
Line 92 
Line 105 
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
 } }
  
   void   AuthenticationInfoRep::setAuthenticatedPassword(const String& password)
   {
       PEG_METHOD_ENTER(
           TRC_AUTHENTICATION, "AuthenticationInfoRep::setAuthenticatedPassword");
   
       _authPassword = password;
   
       PEG_METHOD_EXIT();
   }
   
 void   AuthenticationInfoRep::setAuthChallenge(const String& challenge) void   AuthenticationInfoRep::setAuthChallenge(const String& challenge)
 { {
     PEG_METHOD_ENTER(     PEG_METHOD_ENTER(
Line 147 
Line 170 
 } }
 #endif #endif
  
   #ifdef PEGASUS_HAS_SSL
   void   AuthenticationInfoRep::setPeerCertificate(SSLCertificateInfo* peerCertificate)
   {
       PEG_METHOD_ENTER(
                       TRC_AUTHENTICATION, "AuthenticationInfoRep::setCertificateStatus");
   
       _peerCertificate = peerCertificate;
   
       PEG_METHOD_EXIT();
   }
   
   void   AuthenticationInfoRep::setCertificateStatus(Sint32 certificateStatus)
   {
       PEG_METHOD_ENTER(
                       TRC_AUTHENTICATION, "AuthenticationInfoRep::setCertificateStatus");
   
       _certificateStatus = certificateStatus;
   
       // check the certificate authentication status to determine whether or not this
       // client is trusted
       if (_certificateStatus == SSLSocket::CERT_SUCCESS)
       {
           PEG_TRACE_STRING(TRC_DISCARDED_DATA, Tracer::LEVEL2,
                            "AuthenticationInfoRep::Client authenticated via SSL certificate");
           _authStatus = AUTHENTICATED;
           _privileged = true;
       }
   
       PEG_METHOD_EXIT();
   }
   #endif
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.5  
changed lines
  Added in v.1.7.4.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2