<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/dnspython.git/dns/tsigkeyring.py, branch rrset-reader</title>
<subtitle>github.com: rthalley/dnspython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/'/>
<entry>
<title>Add gss-tsig support to dnspython</title>
<updated>2020-08-07T23:25:22+00:00</updated>
<author>
<name>Nick Hall</name>
<email>nick.hall@deshaw.com</email>
</author>
<published>2020-07-05T23:40:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=2d8309bdfbda1b24e64d1b0d03ced4408898dfdd'/>
<id>2d8309bdfbda1b24e64d1b0d03ced4408898dfdd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>lint</title>
<updated>2020-07-01T22:47:50+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@play-bow.org</email>
</author>
<published>2020-07-01T22:47:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=e2a4c0c6b188b48405bc6e0e7a71f3544f2e9af0'/>
<id>e2a4c0c6b188b48405bc6e0e7a71f3544f2e9af0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Better deal with backwards compatibility.</title>
<updated>2020-07-01T22:01:04+00:00</updated>
<author>
<name>Brian Wellington</name>
<email>bwelling@xbill.org</email>
</author>
<published>2020-07-01T21:58:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=77e747da6bd5b9b7732d1a28ee0572bf9bcd827b'/>
<id>77e747da6bd5b9b7732d1a28ee0572bf9bcd827b</id>
<content type='text'>
If dns.tsigkeyring.from_text() creates dns.tsig.Key objects with the
default algorithm, that causes problems for code that specifies a
different algorithm.  There's no good way to handle this, so change
dns.tsigkeyring.from_text() to not create dns.tsig.Key objects unless it
knows the algorithm.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If dns.tsigkeyring.from_text() creates dns.tsig.Key objects with the
default algorithm, that causes problems for code that specifies a
different algorithm.  There's no good way to handle this, so change
dns.tsigkeyring.from_text() to not create dns.tsig.Key objects unless it
knows the algorithm.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add dns.tsig.Key class.</title>
<updated>2020-07-01T20:06:14+00:00</updated>
<author>
<name>Brian Wellington</name>
<email>bwelling@xbill.org</email>
</author>
<published>2020-07-01T20:06:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=8d1360481095e29ce63c9777b37d9eb0c411f9b7'/>
<id>8d1360481095e29ce63c9777b37d9eb0c411f9b7</id>
<content type='text'>
This creates a new class to represent a TSIG key, containing name,
secret, and algorithm.

The keyring format is changed to be {name : key}, and the methods in
dns.tsigkeyring are updated to deal with old and new formats.

The Message class is updated to use dns.tsig.Key, although (to avoid
breaking existing code), it stores them in the keyring field.

Message.use_tsig() can accept either explicit keys, or keyrings; it will
extract and/or create a key.

dns.message.from_wire() can accept either a key or a keyring in the
keyring parameter.  If passed a key, it will now raise if the TSIG
record in the message was signed with a different key.  If passed a
keyring containing keys (as opposed to bare secrets), it will check that
the TSIG record's algorithm matches that of the key.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This creates a new class to represent a TSIG key, containing name,
secret, and algorithm.

The keyring format is changed to be {name : key}, and the methods in
dns.tsigkeyring are updated to deal with old and new formats.

The Message class is updated to use dns.tsig.Key, although (to avoid
breaking existing code), it stores them in the keyring field.

Message.use_tsig() can accept either explicit keys, or keyrings; it will
extract and/or create a key.

dns.message.from_wire() can accept either a key or a keyring in the
keyring parameter.  If passed a key, it will now raise if the TSIG
record in the message was signed with a different key.  If passed a
keyring containing keys (as opposed to bare secrets), it will check that
the TSIG record's algorithm matches that of the key.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use base64.decodebytes() and base64.encodebytes().  [Issue #338]</title>
<updated>2019-01-05T15:09:28+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@dnspython.org</email>
</author>
<published>2019-01-05T15:09:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=f93c8c6ad41d38ccd19335a5a0a396cbaa409caf'/>
<id>f93c8c6ad41d38ccd19335a5a0a396cbaa409caf</id>
<content type='text'>
This commit also adds test coverage for tsigkeyring, and fixes to_text()
on python 3, which had never worked properly due to an extra .decode().
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit also adds test coverage for tsigkeyring, and fixes to_text()
on python 3, which had never worked properly due to an extra .decode().
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove _compat module.</title>
<updated>2018-12-09T20:06:24+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@dnspython.org</email>
</author>
<published>2018-12-09T20:06:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=129f9e79ff508e36bac08fd588769525d9214a57'/>
<id>129f9e79ff508e36bac08fd588769525d9214a57</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>update copyright</title>
<updated>2018-12-01T15:26:45+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@dnspython.org</email>
</author>
<published>2018-12-01T15:26:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=505409b970cc62bb777293671b3f943f9fa579b6'/>
<id>505409b970cc62bb777293671b3f943f9fa579b6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Encode and decode TSIG keyrings as needed on Python 3.</title>
<updated>2016-05-31T23:28:53+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@dnspython.org</email>
</author>
<published>2016-05-31T23:28:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=9782771adff96257c0ab4f4ee17321283d997598'/>
<id>9782771adff96257c0ab4f4ee17321283d997598</id>
<content type='text'>
[issue #171]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[issue #171]
</pre>
</div>
</content>
</entry>
<entry>
<title>python3 support</title>
<updated>2016-04-21T15:33:05+00:00</updated>
<author>
<name>Arthur Gautier</name>
<email>baloo@gandi.net</email>
</author>
<published>2016-03-29T17:51:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=5f59c1f3071e2ba6aad4f163ec7884ca8e4f1cc4'/>
<id>5f59c1f3071e2ba6aad4f163ec7884ca8e4f1cc4</id>
<content type='text'>
Signed-off-by: Arthur Gautier &lt;baloo@gandi.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Arthur Gautier &lt;baloo@gandi.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix bug: module dns.name has no attribution .to_text(); should be &lt;@ name&gt;.to_text()</title>
<updated>2013-08-30T18:44:00+00:00</updated>
<author>
<name>wangwang</name>
<email>iamcaiya@gmail.com</email>
</author>
<published>2013-08-30T18:44:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=1835bb9ac96818d983e7caf3218851c758019c0c'/>
<id>1835bb9ac96818d983e7caf3218851c758019c0c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
