def get_current_certs()

in provisioningHandler.py [0:0]


    def get_current_certs(self):
        print('{}/[!boot]*.crt'.format(self.secure_cert_path.format(unique_id=self.unique_id)))
        path = self.secure_cert_path.format(unique_id=self.unique_id)
        non_bootstrap_certs = glob.glob('{}/[!boot]*.crt'.format(path))
        non_bootstrap_key = glob.glob('{}/[!boot]*.key'.format(path))

        #Get the current cert
        if len(non_bootstrap_certs) > 0:
            self.claim_cert = os.path.basename(non_bootstrap_certs[0])

        #Get the current key
        if len(non_bootstrap_key) > 0:
            self.secure_key = os.path.basename(non_bootstrap_key[0])