<div>Not sure which is best but I used ECB</div>The way I used it was..<div><br></div><div><div>&nbsp;&nbsp; &nbsp;FKey:TAESKey256;</div><div>&nbsp;&nbsp; &nbsp;FDecryptKey: string;</div><div><br></div><div><br></div><div><div>&nbsp;&nbsp;ASource := TStringStream.Create(s);</div>
<div>&nbsp;&nbsp;try</div><div>&nbsp;&nbsp; &nbsp;ADest := TStringStream.Create(&#39;&#39;);</div><div>&nbsp;&nbsp; &nbsp;try</div><div>&nbsp;&nbsp; &nbsp; &nbsp;ASource.Position := 0;</div><div>&nbsp;&nbsp; &nbsp; &nbsp;Size := Length(s);</div><div>&nbsp;&nbsp; &nbsp; &nbsp;ADest.WriteBuffer(Size,SizeOf(Size));</div><div>
&nbsp;&nbsp; &nbsp; &nbsp;EncryptAESStreamECB(ASource, Size, FKey, ADest);</div><div>&nbsp;&nbsp; &nbsp; &nbsp;ADest.Position := 0;</div><div>&nbsp;&nbsp; &nbsp; &nbsp;s := ADest.DataString;</div><div>&nbsp;&nbsp; &nbsp;finally</div><div>&nbsp;&nbsp; &nbsp; &nbsp;FreeAndNil(ADest);</div><div>&nbsp;&nbsp; &nbsp;end;</div><div>&nbsp;&nbsp;finally</div>
<div>&nbsp;&nbsp; &nbsp;FreeAndNil(ASource);</div><div>&nbsp;&nbsp;end;</div><div><br></div></div><div class="gmail_quote">On Fri, Oct 24, 2008 at 12:58 PM, Robert martin <span dir="ltr">&lt;<a href="mailto:rob@chreos.co.nz">rob@chreos.co.nz</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="Ih2E3d">Hi Kyley<br>
<br>
Just having a look at this now. &nbsp;Which mode do you use, wiki says &#39;ECB&#39;<br>
might not be the safest although doesn&#39;t mention &#39;CBC&#39; mode.<br>
<br>
looking at<br>
<br>
procedure EncryptAESStreamCBC(Source: TStream; Count: cardinal;<br>
 &nbsp;const Key: TAESKey256; const InitVector: TAESBuffer; Dest: TStream);<br>
overload;<br>
<br>
</div>What is InitVector used for / what should I provide here???<br>
<div><div></div><div class="Wj3C7c"><br>
Sorry about any dumb questions. &nbsp;I am by no means an expert on this!<br>
<br>
Thanks<br>
Rob<br>
<br>
<br>
<br>
Kyley Harris wrote:<br>
&gt; Also, when I said &quot;I have one&quot; i didn&#39;t mean its mine.. copyright is<br>
&gt; in the header.. it works well and easy to use.<br>
&gt;<br>
&gt; On Thu, Oct 23, 2008 at 5:23 PM, Robert martin &lt;<a href="mailto:rob@chreos.co.nz">rob@chreos.co.nz</a><br>
&gt; &lt;mailto:<a href="mailto:rob@chreos.co.nz">rob@chreos.co.nz</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt; &nbsp; &nbsp; Hi<br>
&gt;<br>
&gt; &nbsp; &nbsp; I have a file I want to FTP to a site. &nbsp;I want this file to be<br>
&gt; &nbsp; &nbsp; physically encrypted with something reasonably strong. &nbsp;Does any body<br>
&gt; &nbsp; &nbsp; have some code / web pointer to a site that doesn&#39;t require extra<br>
&gt; &nbsp; &nbsp; components or dlls to do it. &nbsp;I did a search on AES encryption and<br>
&gt; &nbsp; &nbsp; found<br>
&gt; &nbsp; &nbsp; lots of sites but most want me to use their components. &nbsp;I just want<br>
&gt; &nbsp; &nbsp; some code !<br>
&gt;<br>
&gt; &nbsp; &nbsp; Thanks<br>
&gt; &nbsp; &nbsp; Rob<br>
&gt; &nbsp; &nbsp; _______________________________________________<br>
&gt; &nbsp; &nbsp; NZ Borland Developers Group - Delphi mailing list<br>
&gt; &nbsp; &nbsp; Post: <a href="mailto:delphi@delphi.org.nz">delphi@delphi.org.nz</a> &lt;mailto:<a href="mailto:delphi@delphi.org.nz">delphi@delphi.org.nz</a>&gt;<br>
&gt; &nbsp; &nbsp; Admin: <a href="http://delphi.org.nz/mailman/listinfo/delphi" target="_blank">http://delphi.org.nz/mailman/listinfo/delphi</a><br>
&gt; &nbsp; &nbsp; Unsubscribe: send an email to <a href="mailto:delphi-request@delphi.org.nz">delphi-request@delphi.org.nz</a><br>
&gt; &nbsp; &nbsp; &lt;mailto:<a href="mailto:delphi-request@delphi.org.nz">delphi-request@delphi.org.nz</a>&gt; with Subject: unsubscribe<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Kyley Harris<br>
&gt; Harris Software<br>
&gt; +64-21-671-821<br>
&gt; ------------------------------------------------------------------------<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; NZ Borland Developers Group - Delphi mailing list<br>
&gt; Post: <a href="mailto:delphi@delphi.org.nz">delphi@delphi.org.nz</a><br>
&gt; Admin: <a href="http://delphi.org.nz/mailman/listinfo/delphi" target="_blank">http://delphi.org.nz/mailman/listinfo/delphi</a><br>
&gt; Unsubscribe: send an email to <a href="mailto:delphi-request@delphi.org.nz">delphi-request@delphi.org.nz</a> with Subject: unsubscribe<br>
_______________________________________________<br>
NZ Borland Developers Group - Delphi mailing list<br>
Post: <a href="mailto:delphi@delphi.org.nz">delphi@delphi.org.nz</a><br>
Admin: <a href="http://delphi.org.nz/mailman/listinfo/delphi" target="_blank">http://delphi.org.nz/mailman/listinfo/delphi</a><br>
Unsubscribe: send an email to <a href="mailto:delphi-request@delphi.org.nz">delphi-request@delphi.org.nz</a> with Subject: unsubscribe<br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Kyley Harris<br>Harris Software<br>+64-21-671-821<br>
</div>