<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/node.git/lib/crypto.js, branch move-debugger-tests</title>
<subtitle>github.com: joyent/node.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/'/>
<entry>
<title>crypto: introduce .setEngine(engine, [flags])</title>
<updated>2014-01-05T12:42:33+00:00</updated>
<author>
<name>Fedor Indutny</name>
<email>fedor.indutny@gmail.com</email>
</author>
<published>2013-12-14T11:28:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=92b6417098371259730c00360979101ce38cbe12'/>
<id>92b6417098371259730c00360979101ce38cbe12</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: support GCM authenticated encryption mode.</title>
<updated>2013-12-07T20:00:02+00:00</updated>
<author>
<name>Ingmar Runge</name>
<email>ingmar@irsoft.de</email>
</author>
<published>2013-11-19T21:38:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=e0d31ea2dbdc33dda0f295ceda07b7fc1de4e09c'/>
<id>e0d31ea2dbdc33dda0f295ceda07b7fc1de4e09c</id>
<content type='text'>
This adds two new member functions getAuthTag and setAuthTag that
are useful for AES-GCM encryption modes. Use getAuthTag after
Cipheriv.final, transmit the tag along with the data and use
Decipheriv.setAuthTag to have the encrypted data verified.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds two new member functions getAuthTag and setAuthTag that
are useful for AES-GCM encryption modes. Use getAuthTag after
Cipheriv.final, transmit the tag along with the data and use
Decipheriv.setAuthTag to have the encrypted data verified.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'upstream/v0.10'</title>
<updated>2013-12-07T05:27:18+00:00</updated>
<author>
<name>Timothy J Fontaine</name>
<email>tjfontaine@gmail.com</email>
</author>
<published>2013-12-07T05:27:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=fcca3585fea09ab4a5a86628dceeb248ff82b1ff'/>
<id>fcca3585fea09ab4a5a86628dceeb248ff82b1ff</id>
<content type='text'>
Conflicts:
	lib/tls.js
	src/node.js
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	lib/tls.js
	src/node.js
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: Make Decipher._flush() emit errors.</title>
<updated>2013-12-04T15:52:15+00:00</updated>
<author>
<name>Kai Groner</name>
<email>kai@gronr.com</email>
</author>
<published>2013-04-18T23:01:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=98be8df571f92ad0b846209c21cc00139bc14805'/>
<id>98be8df571f92ad0b846209c21cc00139bc14805</id>
<content type='text'>
When Decipher processes a stream using an incorrect key, the
DecipherFinal() method throws an unhandled exception at the end of the
stream.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When Decipher processes a stream using an incorrect key, the
DecipherFinal() method throws an unhandled exception at the end of the
stream.
</pre>
</div>
</content>
</entry>
<entry>
<title>tls: add ECDH ciphers support</title>
<updated>2013-10-30T07:34:47+00:00</updated>
<author>
<name>Erik Dubbelboer</name>
<email>erik@dubbelboer.com</email>
</author>
<published>2013-10-14T14:53:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=bb909ad64285194b3d02322e3fb4b17ff5192c50'/>
<id>bb909ad64285194b3d02322e3fb4b17ff5192c50</id>
<content type='text'>
Switch test fixtures to 1024 bit keys.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Switch test fixtures to 1024 bit keys.
</pre>
</div>
</content>
</entry>
<entry>
<title>src: accept passphrase when crypto signing with private key</title>
<updated>2013-10-29T10:19:47+00:00</updated>
<author>
<name>Thom Seddon</name>
<email>thom@nightworld.com</email>
</author>
<published>2013-10-04T11:59:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=f755ecf484a9789525746475b924ddf2b3f316d0'/>
<id>f755ecf484a9789525746475b924ddf2b3f316d0</id>
<content type='text'>
Previous behaviour was to drop to an openssl prompt
("Enter PEM pass phrase:") when supplying a private key with a
passphrase. This change adds a fourth, optional, paramter that
will be used as the passphrase.
To include this parameter in a backwards compatible way it was
necessary to expose the previously undocumented (and unexposed)
feature of being able to explitly setting the output encoding.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previous behaviour was to drop to an openssl prompt
("Enter PEM pass phrase:") when supplying a private key with a
passphrase. This change adds a fourth, optional, paramter that
will be used as the passphrase.
To include this parameter in a backwards compatible way it was
necessary to expose the previously undocumented (and unexposed)
feature of being able to explitly setting the output encoding.
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: add SPKAC support</title>
<updated>2013-10-16T16:43:19+00:00</updated>
<author>
<name>Jason Gerfen</name>
<email>jason.gerfen@gmail.com</email>
</author>
<published>2013-10-10T20:24:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=7bf46ba4cedefe8d3b6548a314ad64fc0cfd89f1'/>
<id>7bf46ba4cedefe8d3b6548a314ad64fc0cfd89f1</id>
<content type='text'>
Implements new class 'Certificate' within crypto object for working
with SPKAC's (signed public key &amp; challenge) natively.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Implements new class 'Certificate' within crypto object for working
with SPKAC's (signed public key &amp; challenge) natively.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "crypto: add SPKAC support"</title>
<updated>2013-10-15T22:58:58+00:00</updated>
<author>
<name>isaacs</name>
<email>i@izs.me</email>
</author>
<published>2013-10-15T22:58:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=d9b4cc323f481bf465384b2012ba5043e18fe098'/>
<id>d9b4cc323f481bf465384b2012ba5043e18fe098</id>
<content type='text'>
This reverts commit 7f66e44dc1e90e7abda2a9ed02d7e8163e1f6358.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 7f66e44dc1e90e7abda2a9ed02d7e8163e1f6358.
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: add SPKAC support</title>
<updated>2013-10-13T08:31:20+00:00</updated>
<author>
<name>Jason Gerfen</name>
<email>jason.gerfen@gmail.com</email>
</author>
<published>2013-10-10T20:24:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=7f66e44dc1e90e7abda2a9ed02d7e8163e1f6358'/>
<id>7f66e44dc1e90e7abda2a9ed02d7e8163e1f6358</id>
<content type='text'>
Implements new class 'Certificate' within crypto object for working
with SPKAC's (signed public key &amp; challenge) natively.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Implements new class 'Certificate' within crypto object for working
with SPKAC's (signed public key &amp; challenge) natively.
</pre>
</div>
</content>
</entry>
<entry>
<title>src: Replace macros with util functions</title>
<updated>2013-08-01T22:08:01+00:00</updated>
<author>
<name>isaacs</name>
<email>i@izs.me</email>
</author>
<published>2013-07-26T21:38:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=22c68fdc1dae40f0ed9c71a02f66e5b2c6353691'/>
<id>22c68fdc1dae40f0ed9c71a02f66e5b2c6353691</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
