Search found 593 matches

by paulej
Fri Feb 24, 2012 11:30 pm
Forum: OpenID Provider Server
Topic: Project Still Active?
Replies: 12
Views: 48887

Re: Project Still Active?

Not to discourage you, but there are several freely available servers. See: http://wiki.openid.net/w/page/12995226/Run%20your%20own%20identity%20server Unfortunately, I'm not familiar with a BSD "Ports" project. Unfortunate name, since we all know what a "port" is, but not "...
by paulej
Thu Feb 23, 2012 1:43 am
Forum: AES Crypt
Topic: using AESCrypt.java to work with strings
Replies: 1
Views: 3757

Re: using AESCrypt.java to work with strings

Peter, I didn't write the Java version of the code (though I did write the original C++ code). Assuming the Java code is producing that error for the same reason (which it likely is), it suggests that the HMAC is not being computed properly. What the HMAC is for is to verify that the message was not...
by paulej
Thu Feb 23, 2012 1:24 am
Forum: OpenID Provider Server
Topic: Project Still Active?
Replies: 12
Views: 48887

Re: Project Still Active?

I was the one who wrote the Packetizer OpenID Server, so I certainly appreciate the kind words! The project is "active" in the sense that I add stuff whenever I get time. I've certainly not abandoned the code, but since it has been stable and served my purpose, I haven't had to touch it in...
by paulej
Tue Jan 31, 2012 6:16 pm
Forum: AES Crypt
Topic: Sha256 executable
Replies: 1
Views: 3333

Re: Sha256 executable

We've been asked about including a verifiable hash before, but we do not do it because it provides a false sense of security. If you get AES Crypt directly from http://www.aescrypt.com, then you would be getting the genuine software. If we posted an SHA-1 or MD5 hash of the file, it might make you f...
by paulej
Wed Jan 18, 2012 2:53 am
Forum: AES Crypt
Topic: Mac GUI crashes on startup
Replies: 4
Views: 5627

Re: Mac GUI crashes on startup

Sorry for the delay. We have new Mac packages available at www.aescrypt.com. Hopefully, these will work appropriately for the x86 and PPC machines.
by paulej
Tue Jan 17, 2012 1:38 am
Forum: H.323 (Packet-Switched Multimedia Systems)
Topic: H.323 vs. SIP
Replies: 10
Views: 37036

Re: H.323 vs. SIP

Jim, I think the answer to the question is actually fairly simple: because that is what the major service providers are offering. Given the rise in mobile phones, that's where carriers are looking to make the bulk of their revenue. They are also of the mind that people using those mobile phones will...
by paulej
Mon Jan 09, 2012 10:17 pm
Forum: AES Crypt
Topic: Secure Password Generator
Replies: 16
Views: 22591

Re: Secure Password Generator

As you requested, I created C code to do the same thing. It will work on Linux or Windows. I took the Perl script, C code, 32-bit Linux binary, and 32-bit Windows binary and put it into a ZIP file that can be downloaded from the pwgen page.
by paulej
Mon Jan 09, 2012 2:15 pm
Forum: AES Crypt
Topic: Secure Password Generator
Replies: 16
Views: 22591

Re: Secure Password Generator

The second argument is only used by the function that generates passwords. I didn't write the command-line tool to accept a second argument. If you want to always generate special characters, then change this: print GeneratePassword($password_length,0) . "\n"; to this: print GeneratePasswo...
by paulej
Sun Jan 08, 2012 11:36 pm
Forum: AES Crypt
Topic: Secure Password Generator
Replies: 16
Views: 22591

Re: Secure Password Generator

The function that generates the password strings will select characters at random. If the second argument is '1', it will use special characters. However, I do not and will not force the routine to generate a certain number of special characters. Doing so would mean the result is not entirely random...
by paulej
Fri Jan 06, 2012 6:38 am
Forum: AES Crypt
Topic: Secure Password Generator
Replies: 16
Views: 22591

Secure Password Generator

I have been asked many times about creating secure passwords. Passwords do not have to be significantly long to be secure. so, I put together this page that will generate useful and secure passwords for web sites and AES Crypt. https://secure.packetizer.com/pwgen/ I would welcome any comments, espec...