<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bitmask_client.git/src/leap/bitmask/crypto, branch 0.7.0rc2</title>
<subtitle>[bitmask_client] 
</subtitle>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask_client.git/'/>
<entry>
<title>Send the token when querying the EIP cert</title>
<updated>2014-09-08T17:53:23+00:00</updated>
<author>
<name>Tomás Touceda</name>
<email>chiiph@leap.se</email>
</author>
<published>2014-09-05T18:37:07+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask_client.git/commit/?id=dff4c53be63e5412fe4a8e69d26bf45bd949ec71'/>
<id>dff4c53be63e5412fe4a8e69d26bf45bd949ec71</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Code style fixes.</title>
<updated>2014-07-16T12:39:17+00:00</updated>
<author>
<name>Ivan Alejandro</name>
<email>ivanalejandro0@gmail.com</email>
</author>
<published>2014-07-16T12:39:17+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask_client.git/commit/?id=432fcab9f838b0bfc81ed8d40d92b4b5d3854f24'/>
<id>432fcab9f838b0bfc81ed8d40d92b4b5d3854f24</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use specific settings for backend.</title>
<updated>2014-07-14T15:56:55+00:00</updated>
<author>
<name>Ivan Alejandro</name>
<email>ivanalejandro0@gmail.com</email>
</author>
<published>2014-07-11T20:24:20+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask_client.git/commit/?id=0aee7d6cbc3f2c0b764056966eeddc4057eafd08'/>
<id>0aee7d6cbc3f2c0b764056966eeddc4057eafd08</id>
<content type='text'>
This way we get rid of Qt on the backend side.
The use of QSettings in the backend was breaking the app on OSX.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This way we get rid of Qt on the backend side.
The use of QSettings in the backend was breaking the app on OSX.
</pre>
</div>
</content>
</entry>
<entry>
<title>Lowercase signals names.</title>
<updated>2014-07-14T15:14:20+00:00</updated>
<author>
<name>Ivan Alejandro</name>
<email>ivanalejandro0@gmail.com</email>
</author>
<published>2014-06-11T18:35:10+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask_client.git/commit/?id=b66c1643eeb094a0f54d621ec3bf2c93173b767d'/>
<id>b66c1643eeb094a0f54d621ec3bf2c93173b767d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use authenticated() properly.</title>
<updated>2014-04-16T15:18:31+00:00</updated>
<author>
<name>Ivan Alejandro</name>
<email>ivanalejandro0@gmail.com</email>
</author>
<published>2014-04-16T15:18:31+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask_client.git/commit/?id=eece52ff0118af412b0e2bf7a4200ebf0bca2f16'/>
<id>eece52ff0118af412b0e2bf7a4200ebf0bca2f16</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove PySide as a dependency.</title>
<updated>2014-04-15T18:00:08+00:00</updated>
<author>
<name>Ivan Alejandro</name>
<email>ivanalejandro0@gmail.com</email>
</author>
<published>2014-03-21T19:56:58+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask_client.git/commit/?id=2ad21a720b14a6c58922bf4f026d24ad87ed8acd'/>
<id>2ad21a720b14a6c58922bf4f026d24ad87ed8acd</id>
<content type='text'>
- Use python `object` as a parent class.
- Replace QMutex with a `threading.Lock`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Use python `object` as a parent class.
- Replace QMutex with a `threading.Lock`
</pre>
</div>
</content>
</entry>
<entry>
<title>Move SRPAuth to the backend.</title>
<updated>2014-04-15T18:00:07+00:00</updated>
<author>
<name>Ivan Alejandro</name>
<email>ivanalejandro0@gmail.com</email>
</author>
<published>2014-03-19T19:06:07+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask_client.git/commit/?id=6444c6c9c758b1f4bd291d5e4e5455b84345ec9b'/>
<id>6444c6c9c758b1f4bd291d5e4e5455b84345ec9b</id>
<content type='text'>
* Move methods from SRPAuth to backend: login, logout, change_password.

* Add backend section to hold temporary hack code, needed in the process
  of splitting frontend and backend.

* Replace pyside signals with Signaler signals.

* Move all the signaling and thread launching in SRPAuth inside of
  __impl.

* Move defer handling code (callbacks/errbacks) to the backend and left
  only signal handling in the GUI.

[Closes #5347]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Move methods from SRPAuth to backend: login, logout, change_password.

* Add backend section to hold temporary hack code, needed in the process
  of splitting frontend and backend.

* Replace pyside signals with Signaler signals.

* Move all the signaling and thread launching in SRPAuth inside of
  __impl.

* Move defer handling code (callbacks/errbacks) to the backend and left
  only signal handling in the GUI.

[Closes #5347]
</pre>
</div>
</content>
</entry>
<entry>
<title>Move srpregister interaction to the backend.</title>
<updated>2014-03-19T15:49:05+00:00</updated>
<author>
<name>Ivan Alejandro</name>
<email>ivanalejandro0@gmail.com</email>
</author>
<published>2014-03-18T21:04:51+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask_client.git/commit/?id=ec04455ddbdf2d1ae1b3fcc3bebc433f89f53601'/>
<id>ec04455ddbdf2d1ae1b3fcc3bebc433f89f53601</id>
<content type='text'>
Also:
- remove unused code.
- add status attributes for srpauth responses.
- split response handling
- remove unneeded hack to avoid segfault emitting None
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also:
- remove unused code.
- add status attributes for srpauth responses.
- split response handling
- remove unneeded hack to avoid segfault emitting None
</pre>
</div>
</content>
</entry>
<entry>
<title>Move login/logout success/error msgs to the GUI.</title>
<updated>2014-03-11T16:07:38+00:00</updated>
<author>
<name>Ivan Alejandro</name>
<email>ivanalejandro0@gmail.com</email>
</author>
<published>2014-03-11T16:07:38+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask_client.git/commit/?id=5c2150723d87e8713bffe23d0fa897d1de088b3f'/>
<id>5c2150723d87e8713bffe23d0fa897d1de088b3f</id>
<content type='text'>
Also refactor signals to be more granular and notify clearly if there
was an error or not, then in the GUI we show the corresponding message.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also refactor signals to be more granular and notify clearly if there
was an error or not, then in the GUI we show the corresponding message.
</pre>
</div>
</content>
</entry>
<entry>
<title>Move error messages for the user to the GUI.</title>
<updated>2014-03-11T15:47:28+00:00</updated>
<author>
<name>Ivan Alejandro</name>
<email>ivanalejandro0@gmail.com</email>
</author>
<published>2014-03-11T15:47:28+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask_client.git/commit/?id=55fd2d680c1d1f8cdf3433bf408858b72d55178f'/>
<id>55fd2d680c1d1f8cdf3433bf408858b72d55178f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
