<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://halfgeek.org/wiki/index.php?action=history&amp;feed=atom&amp;title=Armoring_binary_data_as_text</id>
	<title>Armoring binary data as text - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://halfgeek.org/wiki/index.php?action=history&amp;feed=atom&amp;title=Armoring_binary_data_as_text"/>
	<link rel="alternate" type="text/html" href="https://halfgeek.org/wiki/index.php?title=Armoring_binary_data_as_text&amp;action=history"/>
	<updated>2026-08-03T06:22:16Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.34.0</generator>
	<entry>
		<id>https://halfgeek.org/wiki/index.php?title=Armoring_binary_data_as_text&amp;diff=2265&amp;oldid=prev</id>
		<title>Psmay: Created page with &quot;Encoding binary data as clean ASCII text is a useful way to get a file across a channel that doesn&#039;t do well with arbitrary bytes. For example, when using some kinds of remote...&quot;</title>
		<link rel="alternate" type="text/html" href="https://halfgeek.org/wiki/index.php?title=Armoring_binary_data_as_text&amp;diff=2265&amp;oldid=prev"/>
		<updated>2015-06-05T13:54:29Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;Encoding binary data as clean ASCII text is a useful way to get a file across a channel that doesn&amp;#039;t do well with arbitrary bytes. For example, when using some kinds of remote...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Encoding binary data as clean ASCII text is a useful way to get a file across a channel that doesn&amp;#039;t do well with arbitrary bytes. For example, when using some kinds of remote desktop access, file sharing is disabled but clipboard text sharing is allowed.&lt;br /&gt;
&lt;br /&gt;
These variations are not mutually compatible; use the same tool on both ends.&lt;br /&gt;
&lt;br /&gt;
==GnuPG==&lt;br /&gt;
&lt;br /&gt;
Available on the typical Linux system and some others. Includes a 24-bit CRC.&lt;br /&gt;
&lt;br /&gt;
 # Armor to console (without redirection, run then copy armored from console)&lt;br /&gt;
 gpg -ao - --store &amp;#039;&amp;#039;infile&amp;#039;&amp;#039; &amp;gt; &amp;#039;&amp;#039;armored.txt&amp;#039;&amp;#039;&lt;br /&gt;
 # Dearmor from console (without redirection, run then paste and press ctrl+D)&lt;br /&gt;
 gpg -o &amp;#039;&amp;#039;outfile&amp;#039;&amp;#039; &amp;lt; &amp;#039;&amp;#039;armored.txt&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==certutil (Windows)==&lt;br /&gt;
&lt;br /&gt;
Available on recent Windows machines. No CRC is present, but the program can generate a digest if error checking is desired.&lt;br /&gt;
&lt;br /&gt;
 # Optional: Get hash of original&lt;br /&gt;
 certutil -hashfile &amp;#039;&amp;#039;infile&amp;#039;&amp;#039; SHA1&lt;br /&gt;
 # Armor to armored.txt&lt;br /&gt;
 certutil -encode &amp;#039;&amp;#039;infile&amp;#039;&amp;#039; &amp;#039;&amp;#039;armored.txt&amp;#039;&amp;#039;&lt;br /&gt;
 # Dearmor armored.txt&lt;br /&gt;
 certutil -decode &amp;#039;&amp;#039;armored.txt&amp;#039;&amp;#039; &amp;#039;&amp;#039;outfile&amp;#039;&amp;#039;&lt;br /&gt;
 # Optional: Get hash of result (to compare with hash of original)&lt;br /&gt;
 certutil -hashfile &amp;#039;&amp;#039;outfile&amp;#039;&amp;#039; SHA1&lt;/div&gt;</summary>
		<author><name>Psmay</name></author>
		
	</entry>
</feed>