diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2014-06-14 18:10:35 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2014-06-14 19:50:00 +0200 |
commit | 699ecf84ff888c9c3fc429af41b797e823efb24b (patch) | |
tree | 325373197c733a1e108617889eebbf46294a2d2e | |
parent | 01e102ba4d25bf6650e6940e69513523b659d080 (diff) |
Handle missing MAC algorithm properly
-rw-r--r-- | pskc/encryption.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pskc/encryption.py b/pskc/encryption.py index 518e8f5..6b45a7b 100644 --- a/pskc/encryption.py +++ b/pskc/encryption.py @@ -55,7 +55,8 @@ class EncryptedValue(object): if encrypted_value is None: return encryption_method = find(encrypted_value, 'xenc:EncryptionMethod') - self.algorithm = encryption_method.get('Algorithm') + if encryption_method is not None: + self.algorithm = encryption_method.attrib.get('Algorithm') self.cipher_value = findbin( encrypted_value, 'xenc:CipherData/xenc:CipherValue') |