passwordsafe-devel Mailing List for Password Safe (Page 40)
Popular easy-to-use and secure password manager
Brought to you by:
ronys
You can subscribe to this list here.
2002 |
Jan
(2) |
Feb
(1) |
Mar
(4) |
Apr
|
May
(18) |
Jun
(11) |
Jul
|
Aug
(1) |
Sep
|
Oct
(3) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
|
Feb
|
Mar
|
Apr
(67) |
May
(96) |
Jun
(16) |
Jul
(26) |
Aug
(9) |
Sep
(7) |
Oct
(11) |
Nov
|
Dec
(19) |
2004 |
Jan
(13) |
Feb
(27) |
Mar
(20) |
Apr
(9) |
May
|
Jun
(1) |
Jul
(5) |
Aug
(47) |
Sep
(12) |
Oct
(2) |
Nov
(5) |
Dec
(21) |
2005 |
Jan
(27) |
Feb
(5) |
Mar
(3) |
Apr
(10) |
May
(12) |
Jun
(8) |
Jul
(22) |
Aug
(4) |
Sep
(1) |
Oct
(2) |
Nov
(41) |
Dec
(15) |
2006 |
Jan
(17) |
Feb
(15) |
Mar
(14) |
Apr
(3) |
May
(2) |
Jun
(8) |
Jul
(5) |
Aug
|
Sep
(2) |
Oct
(12) |
Nov
(12) |
Dec
(3) |
2007 |
Jan
(1) |
Feb
(6) |
Mar
(11) |
Apr
|
May
(35) |
Jun
(4) |
Jul
(4) |
Aug
(2) |
Sep
(6) |
Oct
|
Nov
(2) |
Dec
|
2008 |
Jan
|
Feb
(2) |
Mar
|
Apr
(1) |
May
(1) |
Jun
(1) |
Jul
|
Aug
(3) |
Sep
(1) |
Oct
|
Nov
(3) |
Dec
(1) |
2009 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
(3) |
May
|
Jun
(2) |
Jul
|
Aug
(4) |
Sep
(1) |
Oct
|
Nov
|
Dec
(2) |
2010 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
(2) |
Aug
(1) |
Sep
|
Oct
(2) |
Nov
(3) |
Dec
(14) |
2011 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
(8) |
Jul
(3) |
Aug
|
Sep
(3) |
Oct
(2) |
Nov
|
Dec
|
2012 |
Jan
(1) |
Feb
(3) |
Mar
|
Apr
(2) |
May
|
Jun
(4) |
Jul
(3) |
Aug
(3) |
Sep
(1) |
Oct
(3) |
Nov
|
Dec
(2) |
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(6) |
Jun
(4) |
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2014 |
Jan
(1) |
Feb
(3) |
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
(5) |
2015 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
(1) |
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(1) |
Oct
(4) |
Nov
(1) |
Dec
(2) |
2016 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
(2) |
Dec
|
2017 |
Jan
|
Feb
|
Mar
(2) |
Apr
(1) |
May
|
Jun
(2) |
Jul
(1) |
Aug
(1) |
Sep
(1) |
Oct
(1) |
Nov
|
Dec
|
2018 |
Jan
(3) |
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
(1) |
Oct
(2) |
Nov
(1) |
Dec
(1) |
2019 |
Jan
(1) |
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
(1) |
Oct
(9) |
Nov
|
Dec
(2) |
2020 |
Jan
|
Feb
|
Mar
(2) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(1) |
Oct
(2) |
Nov
|
Dec
|
2021 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(1) |
Aug
|
Sep
(1) |
Oct
(1) |
Nov
|
Dec
(2) |
2022 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
(1) |
2023 |
Jan
(2) |
Feb
(1) |
Mar
|
Apr
|
May
(8) |
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
(2) |
Dec
|
2024 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2025 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Edward E. <ed...@ya...> - 2002-03-01 00:28:21
|
Hi all, A few weeks ago, ignorant of this list, I emailed Jim Russell about a problem with the PWSafe source. I noticed the SecString class at that time was subclassing std::string, which is a big no-no since std::string has no virtual destructor. In some instances, this can lead to the SecString destructor never being called, and hence the memory buffer with the SecString contents never getting cleared. I suggested a better approach would be to write an allocator that clears memory on release, then make SecString an instantiation of the std::string template using this allocator. The beauty of this solution is you can create any STL container that clears its memory on release. I mentioned I would be writing such an allocator class myself soon for another project and would gladly provide a copy of the source. Well, as I was browsing the Crypto++ library I came across an allocator class (template, actually) written by a Denis Bider that does exactly that. On Windows platforms, it also attempts to lock the pages in memory with the VirtualLock() system call. I was contemplating adding this functionality to my allocator as well, although the MSDN information is conflicting as to whether VirtualLock actually locks the pages in memory or just hints to the OS that is should do so. Anyway, the allocator is available (no license restrictions) as part of the BSL library at http://www.bitvise.com/bsl.html I don't know this Denis Bider and I can't vouch for the quality of the code. But on first pass it looks reasonably solid. My one complaint would be the simplistic memory overwriting which merely zeroes the memory out one time, but this can easily be changed. I hope to give the code a more thorough review in the near future. At that time I will inform this list of my findings and provide and code changes I make. Thanks, Edward Elliott __________________________________________________ Do You Yahoo!? Yahoo! Greetings - Send FREE e-cards for every occasion! http://greetings.yahoo.com |
From: Jim R. <jru...@us...> - 2002-02-04 15:21:57
|
On or about Thu, Jan 31, 2002 at 08:41:29PM -0000, Martyn Pa...@Ma... wrote: > Does anyone have a source set for a win32 platform? As it stands now, the *only* source set is the one for the win32 platform, especially considering the fact that it's currently MFC-based. > I have taken a look at the source available from the CVS system and have a number of comments to make but would like to base my comments of a solid foundation. The source in CVS is what I checked in. It consists of the v1.7 source as provided to me by Bruce S. (the Counterpane Source) with the fixes marked on the TODO page at passwordsafe.sourceforge.net already applied. One or two of the modules that I've started to write to separate the backend engine from the GUI are also in CVS, but are not in the Makefile yet, and are not yet used in the application. I have a few more changes that have not been checked in yet, but the last few weeks have been a bit of a speed bump in Password Safe development (the company I worked for dissolved, and I've been spending a lot of time job-hunting). Anyway -- Martin, the CVS source is about as solid a foundation as we have right now, so comment away based on that. Jim R |
From: Martyn <Pa...@Ma...> - 2002-01-31 20:44:49
|
Dear All Does anyone have a source set for a win32 platform? I have taken a look at the source available from the CVS system and have = a number of comments to make but would like to base my comments of a = solid foundation. Martyn Pavey |
From: Jim R. <jru...@us...> - 2002-01-23 16:05:51
|
UPFRONT APOLOGY -- You may get more than one copy of this email. I'm posting it to three mailing lists, and BCC'ing to a number of addresses. We'll get it all sorted out soon enough. <g> Now that that's out of the way... Thanks to everyone for their messages of congratulations/condolences on my appointment as maintainer of PasswordSafe. You are receiving this message either because you subscribed to one of the mailing lists I've set up, or because I'm inviting you to do so. PasswordSafe from this point forward will be, I hope, a collaborative effort, and mailing lists are a nice public way of hashing out where the development effort should go. The mailing lists are pretty much what you would expect: passwordsafe-devel -- subscribe to this one if you want to do some coding or documentation passwordsafe-users -- subscribe to this one if you want to submit bug reports, feature requests, or complain about the user interface passwordsafe-announce -- subscribe to this one if you only want to know when the next version is released So subscribe if you haven't yet, and lets get rolling. Point a browser to: https://sourceforge.net/mail/?group_id=41019 Jim R |