Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def __init__(self, **kwargs):
super(ClientCertAuthentication, self).__init__(**kwargs)
self.password = kwargs.get('password', None)
self.pfx = kwargs.get('pfx', None)
self.certificate_thumbprint = kwargs.get('certificate_thumbprint', None)
self.certificate_expiration_date = kwargs.get('certificate_expiration_date', None)
self.certificate_subject_name = kwargs.get('certificate_subject_name', None)
self.type = 'ClientCertificate'