Lines Matching refs:pubkey
38 'pubkey': None, \
180 def __init__(self, pubkey):
181 self.pubkey = pubkey
182 self.modulus_bits = self.get_bit_length(self.pubkey)
183 cmds = ['openssl', 'rsa', '-in', pubkey, '-modulus', '-noout', '-pubin']
200 def get_bit_length(self, pubkey):
202 cmd = ['openssl', 'rsa', '-inform', 'PEM', '-in', pubkey, '-pubin', '-text']
709 self.pubkey = _params['pubkey']
896 key = RSAPublicKey(self.pubkey)
959 pubkey = chain_partition_data[1].strip()
962 key = RSAPublicKey(pubkey)
1034 pubkey = handle.read(pubkey_len)
1035 msg += "\t\tPublic key (sha256): {}\n\n".format(hashlib.sha256(pubkey).hexdigest())
1126 make_image_arguments_list = ['image', 'salt', 'pubkey', 'rollback_index', 'rollback_location']
1127 make_rvt_image_arguments_list = ['salt', 'pubkey', 'rollback_index', 'rollback_location', 'chain_partition']