Package dns :: Module tsigkeyring
[hide private]
[frames] | no frames]

Source Code for Module dns.tsigkeyring

 1  # Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. 
 2  # 
 3  # Permission to use, copy, modify, and distribute this software and its 
 4  # documentation for any purpose with or without fee is hereby granted, 
 5  # provided that the above copyright notice and this permission notice 
 6  # appear in all copies. 
 7  # 
 8  # THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES 
 9  # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 
10  # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR 
11  # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 
12  # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 
13  # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT 
14  # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 
15   
16  """A place to store TSIG keys.""" 
17   
18  import base64 
19   
20  import dns.name 
21   
22   
23 -def from_text(textring):
24 """Convert a dictionary containing (textual DNS name, base64 secret) pairs 25 into a binary keyring which has (dns.name.Name, binary secret) pairs. 26 @rtype: dict""" 27 28 keyring = {} 29 for keytext in textring: 30 keyname = dns.name.from_text(keytext) 31 secret = base64.decodestring(textring[keytext]) 32 keyring[keyname] = secret 33 return keyring
34 35
36 -def to_text(keyring):
37 """Convert a dictionary containing (dns.name.Name, binary secret) pairs 38 into a text keyring which has (textual DNS name, base64 secret) pairs. 39 @rtype: dict""" 40 41 textring = {} 42 for keyname in keyring: 43 keytext = keyname.to_text() 44 secret = base64.encodestring(keyring[keyname]) 45 textring[keytext] = secret 46 return textring
47