Example #1
0
 def loadChainFromString( self, data, dataFormat = crypto.FILETYPE_PEM ):
   """
   Load a x509 cert from a string containing the pem data
   Return : S_OK / S_ERROR
   """
   self.__loadedChain = False
   try:
     self.__certList = crypto.load_certificate_chain( crypto.FILETYPE_PEM, data )
   except Exception, e:
     return S_ERROR( "Can't load pem data: %s" % str( e ) )
Example #2
0
 def loadChainFromString( self, pemData ):
   """
   Load a x509 cert from a string containing the pem data
   Return : S_OK / S_ERROR
   """
   self.__loadedChain = False
   try:
     self.__certList = crypto.load_certificate_chain( crypto.FILETYPE_PEM, pemData )
   except Exception, e:
     return S_ERROR( "Can't load pem data: %s" % str( e ) )
Example #3
0
 def loadChainFromString(self, data, dataFormat=crypto.FILETYPE_PEM):
   """
   Load a x509 cert from a string containing the pem data
   Return : S_OK / S_ERROR
   """
   self.__loadedChain = False
   try:
     self.__certList = crypto.load_certificate_chain(crypto.FILETYPE_PEM, data)
   except Exception as e:
     return S_ERROR(DErrno.ECERTREAD, "%s" % repr(e).replace(',)', ')'))
   if not self.__certList:
     return S_ERROR(DErrno.EX509)
   self.__loadedChain = True
   # Update internals
   self.__checkProxyness()
   return S_OK()
Example #4
0
 def loadChainFromString(self, data, dataFormat=crypto.FILETYPE_PEM):
   """
   Load a x509 cert from a string containing the pem data
   Return : S_OK / S_ERROR
   """
   self.__loadedChain = False
   try:
     self.__certList = crypto.load_certificate_chain(crypto.FILETYPE_PEM, data)
   except Exception as e:
     return S_ERROR(DErrno.ECERTREAD, "%s" % repr(e).replace(',)', ')'))
   if not self.__certList:
     return S_ERROR(DErrno.EX509)
   self.__loadedChain = True
   # Update internals
   self.__checkProxyness()
   return S_OK()