Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add key handle parameter to KSM Database backend #14

Merged
merged 2 commits into from
Mar 22, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions pyhsm/ksm/yubikey_ksm.py
Original file line number Diff line number Diff line change
@@ -206,18 +206,21 @@ def load_aead(self, public_id):


class SQLBackend(object):
def __init__(self, db_url):
def __init__(self, db_url, key_handles):
self.engine = sqlalchemy.create_engine(db_url)
metadata = sqlalchemy.MetaData()
self.aead_table = sqlalchemy.Table('aead_table', metadata, autoload=True, autoload_with=self.engine)
self.key_handles = key_handles

def load_aead(self, public_id):
""" Loads AEAD from the specified database. """
connection = self.engine.connect()
trans = connection.begin()

try:
s = sqlalchemy.select([self.aead_table]).where(self.aead_table.c.public_id == public_id)
s = sqlalchemy.select([self.aead_table]).where(
(self.aead_table.c.public_id == public_id)
& self.aead_table.c.keyhandle.in_([kh[1] for kh in self.key_handles]))
result = connection.execute(s)

for row in result:
@@ -429,7 +432,7 @@ def main():
if args.db_url:
# Using an SQL database for AEADs
try:
aead_backend = SQLBackend(args.db_url)
aead_backend = SQLBackend(args.db_url, args.key_handles)
except Exception as e:
my_log_message(args.debug or args.verbose, syslog.LOG_ERR,
'Could not connect to database "%s" : %s' % (args.db_url, e))