<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.openssl.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jonspillett</id>
	<title>OpenSSLWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.openssl.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jonspillett"/>
	<link rel="alternate" type="text/html" href="https://wiki.openssl.org/index.php/Special:Contributions/Jonspillett"/>
	<updated>2026-04-10T05:29:50Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.13</generator>
	<entry>
		<id>https://wiki.openssl.org/index.php?title=Use_of_Git&amp;diff=2549</id>
		<title>Use of Git</title>
		<link rel="alternate" type="text/html" href="https://wiki.openssl.org/index.php?title=Use_of_Git&amp;diff=2549"/>
		<updated>2017-04-20T01:32:21Z</updated>

		<summary type="html">&lt;p&gt;Jonspillett: Fix link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Note: This is a superset of the information at https://www.openssl.org/source/gitrepo.html&lt;br /&gt;
&lt;br /&gt;
== Background information about using the Git distributed version control system ==&lt;br /&gt;
&lt;br /&gt;
This page provides examples for some of the &amp;lt;tt&amp;gt;git&amp;lt;/tt&amp;gt; commands used when accessing OpenSSL source code, but does not provide complete coverage.&lt;br /&gt;
&lt;br /&gt;
* Refer to the &amp;lt;tt&amp;gt;git&amp;lt;/tt&amp;gt; man ages and http://git-scm.com/ for more complete instructions on using the command.&lt;br /&gt;
* Refer to https://github.com/ for more complete instructions on interacting with Github.&lt;br /&gt;
&lt;br /&gt;
== Use of Git with OpenSSL source tree ==&lt;br /&gt;
&lt;br /&gt;
The OpenSSL group hosts its own Git repository at openssl.org, and this contains the master copy of OpenSSL.  You can browse this at https://git.openssl.org/gitweb/?p=openssl.git;a=tree, or get a clone (checkout) of it with the command &amp;lt;tt&amp;gt;git clone git://git.openssl.org/openssl.git&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Contributors to OpenSSL should make use of the Github copy of this repository at https://github.com/openssl/openssl.  Github makes it easy to maintain your own fork of OpenSSL for developing your contributions, as well as making a &amp;quot;pull request&amp;quot; to share fixes with the OpenSSL team when finished.  Changes in the master Git repository are represented in the Github copy within minutes.&lt;br /&gt;
&lt;br /&gt;
You can view existing pull requests against any of the branches at https://github.com/openssl/openssl/pulls&lt;br /&gt;
&lt;br /&gt;
=== Getting a copy of the OpenSSL source tree ===&lt;br /&gt;
&lt;br /&gt;
If you want to quickly make a copy of the OpenSSL source tree and you do not plan to publish any changes for use by others, just create a clone on your own machine.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ git clone https://github.com/openssl/openssl.git&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(Refer to Github documentation for instructions on other means of cloning the source tree.)&lt;br /&gt;
&lt;br /&gt;
If you plan to make changes to the sources that you will share with others, including contributing changes to OpenSSL, it is recommended that you create a fork of the OpenSSL tree using your own Github id.  You can use this to share changes with others whether or not you intend to submit changes to the OpenSSL team.  Refer to the documentation at https://help.github.com/articles/fork-a-repo, in particular the discussion about how to track changes in the real OpenSSL repository that you forked.&lt;br /&gt;
&lt;br /&gt;
=== Branches ===&lt;br /&gt;
&lt;br /&gt;
The Git repositories contain multiple branches, representing development levels of OpenSSL as well as current and upcoming stable branches.  An easy way to see the available branches is with the branch selector at https://github.com/openssl/openssl.  The branches which are of most interest to most users are&lt;br /&gt;
&lt;br /&gt;
* master (development)&lt;br /&gt;
* OpenSSL_1_1_0-stable&lt;br /&gt;
* OpenSSL_1_0_2-stable&lt;br /&gt;
&lt;br /&gt;
In order to access the code for a branch other than master, clone the Git repository then use the &amp;lt;tt&amp;gt;git checkout ''branchname''&amp;lt;/tt&amp;gt; command to switch to a different branch.  Consider using separate checkouts for each branch you are working in, with appropriate names for each, such as in the following example.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ git clone https://github.com/openssl/openssl.git OpenSSL-master&lt;br /&gt;
$ git clone https://github.com/openssl/openssl.git OpenSSL_1_1_0-stable&lt;br /&gt;
$ (cd OpenSSL_1_0_2-stable &amp;amp;&amp;amp; git checkout OpenSSL_1_1_0-stable)&lt;br /&gt;
$ git clone https://github.com/openssl/openssl.git OpenSSL_1_0_2-stable&lt;br /&gt;
$ (cd OpenSSL_1_0_2-stable &amp;amp;&amp;amp; git checkout OpenSSL_1_0_2-stable)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you've created your own fork of OpenSSL, replace the URL on the &amp;lt;tt&amp;gt;git clone&amp;lt;/tt&amp;gt; command with the one for your fork.  Also, you'll need to follow the instructions at https://help.github.com/articles/fork-a-repo for picking up changes from the master repository that you forked.&lt;br /&gt;
&lt;br /&gt;
=== Making pull requests ===&lt;br /&gt;
&lt;br /&gt;
After developing and testing changes to OpenSSL in your checkout (clone), push them to your fork of OpenSSL (&amp;lt;tt&amp;gt;git push&amp;lt;/tt&amp;gt;), then use the Github interface to submit a pull request to the master OpenSSL repository for the particular revision(s).&lt;br /&gt;
&lt;br /&gt;
Anyone can comment on PR's, and suggest changes.  Before a PR is accepted, it must be approved by two OpenSSL team members.&lt;br /&gt;
&lt;br /&gt;
== Use of Git with the OpenSSL web site ==&lt;br /&gt;
&lt;br /&gt;
The OpenSSL web site is also maintained in git, and can be browsed at https://git.openssl.org/gitweb/?p=openssl-web.git;a=tree.&lt;br /&gt;
&lt;br /&gt;
Unlike the source code, the OpenSSL web site repository is not copied to Github.  You can only interact with it via git.openssl.org, so it is not possible to submit pull requests.&lt;br /&gt;
&lt;br /&gt;
Check it out as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ git clone git://git.openssl.org/openssl-web.git&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In order to submit corrections to the web site, create a patch as described above.&lt;br /&gt;
&lt;br /&gt;
Only the master branch of the web site repository is used.&lt;/div&gt;</summary>
		<author><name>Jonspillett</name></author>
	</entry>
	<entry>
		<id>https://wiki.openssl.org/index.php?title=Developing_For_OpenSSL&amp;diff=2548</id>
		<title>Developing For OpenSSL</title>
		<link rel="alternate" type="text/html" href="https://wiki.openssl.org/index.php?title=Developing_For_OpenSSL&amp;diff=2548"/>
		<updated>2017-04-20T00:57:26Z</updated>

		<summary type="html">&lt;p&gt;Jonspillett: Remove RT references, add GitHub ones&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Periodically people ask us how to join the OpenSSL development team. This page is an attempt to answer that question.&lt;br /&gt;
&lt;br /&gt;
Firstly it is important to understand that OpenSSL is complex. It is both a fully featured cryptography library as well as an SSL/TLS library. In addition the command line tools provide a wide array of capabilities. It can take quite a while to become proficient in coding in the internals. It is also clearly security sensitive. For those reasons joining the main development team is by invitation only. Most of the current development team have had an association with OpenSSL of one sort or another for a long time. Some have been on the project since the beginning, whilst many others joined later. For those joining later, without exception, everyone had a number of years of experience working with OpenSSL before they joined the team itself. The list of current development team members is available here: https://www.openssl.org/about/&lt;br /&gt;
&lt;br /&gt;
However, there are still a number of ways to contribute to the project without joining the development team. We welcome such contributions:&lt;br /&gt;
&lt;br /&gt;
* A good place to start is the openssl-users and openssl-dev mailing lists. The first of these forums will give you the opportunity to help out other users of OpenSSL, and learn from other experts in its use. The latter will give you an insight into some of the development issues that the team is tackling - and in particular issues being raised through the [https://github.com/openssl/openssl/issues GitHub issue tracking] system and responses to those issues.&lt;br /&gt;
&lt;br /&gt;
* We are always looking for good people to help us build up the information held within this wiki. Documentation is one area where we are keen to improve things, and this wiki is an important location for people to come to. Information on how to get an account is available on the [[Welcome]] page.&lt;br /&gt;
&lt;br /&gt;
* Bug fixes and enhancements to the code and documentation can be submitted via [https://github.com/openssl/openssl GitHub] as [https://github.com/openssl/openssl/issues issues] or [https://github.com/openssl/openssl/pulls pull requests]. See the README for details. If using GitHub pull requests please create and/or reference an issue so that it will automatically show up in the issue timeline.&lt;/div&gt;</summary>
		<author><name>Jonspillett</name></author>
	</entry>
	<entry>
		<id>https://wiki.openssl.org/index.php?title=Versioning&amp;diff=2547</id>
		<title>Versioning</title>
		<link rel="alternate" type="text/html" href="https://wiki.openssl.org/index.php?title=Versioning&amp;diff=2547"/>
		<updated>2017-04-20T00:41:18Z</updated>

		<summary type="html">&lt;p&gt;Jonspillett: Added a versioning page with links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Versioning]]&lt;br /&gt;
OpenSSL version numbers are formatted as n1.n2.n3x, where n1-3 are numbers and x, if present, is one or more letters. These can change depending on the release type:&lt;br /&gt;
&lt;br /&gt;
- '''Major releases''' that change one/both of the first two digits, which can break compatibility with previous versions&lt;br /&gt;
&lt;br /&gt;
- '''Minor releases''' that change the last digit, e.g. 1.1.0 vs. 1.1.1, can and are likely to contain new features, but in a way that does not break binary compatibility. This means that an application compiled and dynamically linked with 1.1.0 does not need to be recompiled when the shared library is updated to 1.1.1. It should be noted that some features are transparent to the application such as the maximum negotiated TLS version and cipher suites, performance improvements and so on. There is no need to recompile applications to benefit from these features.&lt;br /&gt;
&lt;br /&gt;
- '''Letter releases''', such as 1.0.2a, exclusively contain bug and security fixes and no new features. &lt;br /&gt;
&lt;br /&gt;
The full release strategy for OpenSSL is available [https://www.openssl.org/policies/releasestrat.html here]&lt;br /&gt;
&lt;br /&gt;
== Finding the current version ==&lt;br /&gt;
&lt;br /&gt;
The command line tool [https://www.openssl.org/docs/manmaster/apps/version.html version] can be used to determine the installed OpenSSL version.&lt;br /&gt;
&lt;br /&gt;
Header file [https://github.com/openssl/openssl/blob/master/include/openssl/opensslv.h opensslv.h] also contains information about the version number.&lt;/div&gt;</summary>
		<author><name>Jonspillett</name></author>
	</entry>
	<entry>
		<id>https://wiki.openssl.org/index.php?title=Main_Page&amp;diff=2546</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.openssl.org/index.php?title=Main_Page&amp;diff=2546"/>
		<updated>2017-04-20T00:07:37Z</updated>

		<summary type="html">&lt;p&gt;Jonspillett: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the OpenSSL wiki.  The main site is https://www.openssl.org . If this is your first visit or to get an account please see the [[Welcome]] page. Your participation and [[Contributions]] are valued.&lt;br /&gt;
&lt;br /&gt;
This wiki is intended as a place for collecting, organizing, and refining useful information about OpenSSL that is currently strewn among multiple locations and formats.&lt;br /&gt;
&lt;br /&gt;
== OpenSSL Quick Links ==&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;TABLE border=0&amp;gt;&lt;br /&gt;
     &amp;lt;TR&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[OpenSSL Overview]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Image:HTAB.png]][[Image:HTAB.png]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Compilation and Installation]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Image:HTAB.png]][[Image:HTAB.png]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Internals]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Image:HTAB.png]][[Image:HTAB.png]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Mailing Lists]] &amp;lt;/TD&amp;gt;&lt;br /&gt;
      &amp;lt;/TR&amp;gt;&lt;br /&gt;
      &amp;lt;TR&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[libcrypto API]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Image:HTAB.png]][[Image:HTAB.png]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[libssl API]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Image:HTAB.png]][[Image:HTAB.png]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Examples]] &amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Image:HTAB.png]][[Image:HTAB.png]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Documentation Index|Index of all API functions]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
      &amp;lt;/TR&amp;gt;&lt;br /&gt;
      &amp;lt;TR&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[License]] &amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Image:HTAB.png]][[Image:HTAB.png]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Command Line Utilities]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Image:HTAB.png]][[Image:HTAB.png]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Related Links]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Image:HTAB.png]][[Image:HTAB.png]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Binaries]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
      &amp;lt;/TR&amp;gt;&lt;br /&gt;
      &amp;lt;TR&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[SSL and TLS Protocols]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Image:HTAB.png]][[Image:HTAB.png]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[1.1 API Changes]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Image:HTAB.png]][[Image:HTAB.png]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[FIPS modules]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
        &amp;lt;TD&amp;gt;[[Image:HTAB.png]][[Image:HTAB.png]]&amp;lt;/TD&amp;gt;&lt;br /&gt;
      &amp;lt;/TR&amp;gt;&lt;br /&gt;
  &amp;lt;/TABLE&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Administrivia ==&lt;br /&gt;
Site guidelines, legal and admininstrative issues.&lt;br /&gt;
:* [[Basic rules]], [[Commercial Product Disclaimer]], [[Contributions]], [[Copyright]], [[License]]&lt;br /&gt;
:* Using This Wiki&lt;br /&gt;
:: [http://meta.wikimedia.org/wiki/Help:Contents Wiki User's Guide], [http://www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list], [http://www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ], [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki Mailing List]&lt;br /&gt;
&lt;br /&gt;
== Reference ==&lt;br /&gt;
This section contains the automagically generated man pages from the OpenSSL git repository, and similar &amp;quot;man&amp;quot; style reference documentation. The man pages are automatically imported from the OpenSSL git repository and local wiki modifications are submitted as patches.&lt;br /&gt;
:* OpenSSL Manual Pages&lt;br /&gt;
::* [[Manual:Openssl(1)]], [[Manual:Ssl(3)]], [[Manual:Crypto(3)]], [[Documentation Index]]&lt;br /&gt;
:: If you wish to edit any of the Manual page content please refer to the [[Guidelines for Manual Page Authors]] page.&lt;br /&gt;
:* [[API]], [[Libcrypto API]], [[Libssl API]]&lt;br /&gt;
:* [[FIPS mode()]], [[FIPS_mode_set()]]&lt;br /&gt;
&lt;br /&gt;
== Usage and Programming ==&lt;br /&gt;
This section has discussions of practical issues in using OpenSSL&lt;br /&gt;
:* Building from Source&lt;br /&gt;
:: Where to find it, the different versions, how to build and install it.&lt;br /&gt;
:* [[OpenSSL Overview]]&lt;br /&gt;
:* [[Versioning]]&lt;br /&gt;
:* [[Compilation and Installation]]&lt;br /&gt;
:* [[EVP]]&lt;br /&gt;
:: Programming techniques and example code&lt;br /&gt;
:: Use of EVP is preferred for most applications and circumstances&lt;br /&gt;
::* [[EVP Asymmetric Encryption and Decryption of an Envelope]]&lt;br /&gt;
::* [[EVP Authenticated Encryption and Decryption]]&lt;br /&gt;
::* [[EVP Symmetric Encryption and Decryption]]&lt;br /&gt;
::* [[EVP Key and Parameter Generation]]&lt;br /&gt;
::* [[EVP Key Agreement]]&lt;br /&gt;
::* [[EVP Message Digests]]&lt;br /&gt;
::* [[EVP Key Derivation]]&lt;br /&gt;
::* [[EVP Signing and Verifying|EVP Signing and Verifying (including MAC codes)]]&lt;br /&gt;
:* [[STACK API]]&lt;br /&gt;
:* Low Level APIs&lt;br /&gt;
::[[Creating an OpenSSL Engine to use indigenous ECDH ECDSA and HASH Algorithms]]&lt;br /&gt;
:: More specialized non-EVP usage&lt;br /&gt;
::* [[Diffie-Hellman parameters]]&lt;br /&gt;
:* [[FIPS Mode]]&lt;br /&gt;
:* [[Simple TLS Server]]&lt;br /&gt;
&lt;br /&gt;
== Concepts and Theory ==&lt;br /&gt;
Discussions of basic cryptographic theory and concepts&lt;br /&gt;
Discussions of common operational issues&lt;br /&gt;
:* [[Base64]]&lt;br /&gt;
:* [http://wiki.openssl.org/index.php/Category:FIPS_140 FIPS 140-2]&lt;br /&gt;
:* [[Random Numbers]]&lt;br /&gt;
:* [[Diffie Hellman]]&lt;br /&gt;
:* [[Elliptic Curve Diffie Hellman]]&lt;br /&gt;
:* [[Elliptic Curve Cryptography]]&lt;br /&gt;
&lt;br /&gt;
== Security Advisories ==&lt;br /&gt;
:* [https://www.openssl.org/policies/secpolicy.html OpenSSL Security Policy]&lt;br /&gt;
:* [https://www.openssl.org/news/vulnerabilities.html OpenSSL Vulnerabilities List]&lt;br /&gt;
:* [[Security_Advisories|Security Advisories Additional Information]]&lt;br /&gt;
&lt;br /&gt;
== Feedback and Contributions ==&lt;br /&gt;
:* [https://www.openssl.org/support/faq.html#BUILD18 How to notify us of suspected security vulnerabilities]&lt;br /&gt;
:* [https://www.openssl.org/community/#bugs How to report bugs, other than for suspected vulnerabilities]&lt;br /&gt;
:* [[Contributions|General background on source and documentation contributions - '''must read''']]&lt;br /&gt;
:* Contributing code fixes, other than for suspected vulnerabilities, as well as fixes and other improvements to manual pages:&lt;br /&gt;
::* If you are unsure as to whether a feature will be useful for the general OpenSSL community please discuss it on the [https://www.openssl.org/support/community.html openssl-dev mailing list] first.  Someone may be already working on the same thing or there may be a good reason as to why that feature isn't implemented.&lt;br /&gt;
::* Follow the [[Use of Git#Use_of_Git_with_OpenSSL_source_tree|instructions for accessing source code]] in the appropriate branches. Note that manual pages and the FAQ are maintained with the source code.&lt;br /&gt;
::* Submit a pull request for each separate fix (also documented [[Use of Git#Use_of_Git_with_OpenSSL_source_tree|there]])&lt;br /&gt;
::* Submit a bug report (see second bullet, above) and reference the pull request. Or you can attach the patch to the ticket.&lt;br /&gt;
:* Contributing fixes and other improvements to the web site&lt;br /&gt;
::* Follow the [[Use_of_Git#Use_of_Git_with_the_OpenSSL_web_site|instructions for accessing web site sources]]&lt;br /&gt;
::* Create a patch (also documented [[Use_of_Git#Use_of_Git_with_the_OpenSSL_web_site|there]])&lt;br /&gt;
::* Submit a bug report and add the patch as an attachment&lt;br /&gt;
:* [[Developing For OpenSSL]]&lt;br /&gt;
:* [[KnownPatches|Known patches not part of OpenSSL]]&lt;br /&gt;
:* [[Welcome|Contributing to this wiki]]&lt;br /&gt;
&lt;br /&gt;
== Internals and Development ==&lt;br /&gt;
This section is for internal details of primary interest to OpenSSL maintainers and power users&lt;br /&gt;
:* [[Code reformatting]]&lt;br /&gt;
&lt;br /&gt;
:* [[Internals]]&lt;br /&gt;
:* [[Code Quality]]&lt;br /&gt;
:* [[Static and Dynamic Analysis]]&lt;br /&gt;
:* [[OCB|OCB Licence details]]&lt;br /&gt;
:* [[Defect and Feature Review Process]]&lt;br /&gt;
:* [[Unit Testing]] (includes other automated testing information)&lt;/div&gt;</summary>
		<author><name>Jonspillett</name></author>
	</entry>
</feed>