8 lines
176 B
Python
8 lines
176 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
# Generate a struct for generating keys.
|
||
|
|
||
|
class constructor(object):
|
||
|
def __init__(self, keyblob, encrypted = False):
|
||
|
self.keyblob = keyblob
|