Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Ruby > openssl examples and docs

Reply
Thread Tools

openssl examples and docs

 
 
Ara.T.Howard
Guest
Posts: n/a
 
      09-24-2004

any pointers other than the cvs site and rdoc stuff?

-a
--
================================================== =============================
| EMAIL :: Ara [dot] T [dot] Howard [at] noaa [dot] gov
| PHONE :: 303.497.6469
| A flower falls, even though we love it;
| and a weed grows, even though we do not love it.
| --Dogen
================================================== =============================
 
Reply With Quote
 
 
 
 
Jamis Buck
Guest
Posts: n/a
 
      09-24-2004
Ara.T.Howard wrote:
>
> any pointers other than the cvs site and rdoc stuff?
>
> -a


My experience with Net::SSH was that there is pitifully little helpful
documentation for the OpenSSL ruby module. I finally had to go to
http://www.openssl.org and read those docs, and then dig into the ruby
module source code to see how it corresponded to the OpenSSL API... it
was not very fun.

If you have any specific questions, I may be able to help. There are a
few others on this list that are much more proficient at it than I am,
though, and they will almost certainly be able to answer anything that I
can't.

- Jamis

--
Jamis Buck

http://www.jamisbuck.org/jamis

"I use octal until I get to 8, and then I switch to decimal."


 
Reply With Quote
 
 
 
 
Paul Duncan
Guest
Posts: n/a
 
      09-24-2004
--uI9S8aIOhfZRGnE0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

* Jamis Buck () wrote:
> Ara.T.Howard wrote:
> >
> >any pointers other than the cvs site and rdoc stuff?
> >
> >-a

>=20
> My experience with Net::SSH was that there is pitifully little helpful
> documentation for the OpenSSL ruby module. I finally had to go to
> http://www.openssl.org and read those docs, and then dig into the ruby
> module source code to see how it corresponded to the OpenSSL API... it
> was not very fun.


In my experience, looking for documentation on the less commonly used
functions in OpenSSL (the OCSP API, for example), is a frustrating
experience.

> If you have any specific questions, I may be able to help. There are a=20
> few others on this list that are much more proficient at it than I am,=20
> though, and they will almost certainly be able to answer anything that I=

=20
> can't.
>=20
> - Jamis
>=20
> --=20
> Jamis Buck
>
> http://www.jamisbuck.org/jamis
>=20
> "I use octal until I get to 8, and then I switch to decimal."


Shouldn't that be "until I get to 7"?

--=20
Paul Duncan <> pabs in #ruby-lang (OPN IRC)
http://www.pablotron.org/ OpenPGP Key ID: 0x82C29562

--uI9S8aIOhfZRGnE0
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: Digital signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)

iD8DBQFBVHJgzdlT34LClWIRAqTUAJ9FZtJdcKCQJz4Ulz+CjZ MldkTL0ACeOXFS
UO/qYl43ugFFmzlPlv0VNr0=
=mOnw
-----END PGP SIGNATURE-----

--uI9S8aIOhfZRGnE0--


 
Reply With Quote
 
Paul Duncan
Guest
Posts: n/a
 
      09-24-2004
--fK3V1lYkOC7b6W9K
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

* Paul Duncan () wrote:
[snipped]
> In my experience, looking for documentation on the less commonly used
> functions in OpenSSL (the OCSP API, for example), is a frustrating
> experience.


Pardon my redundant redundancy .

[snipped]
> --=20
> Paul Duncan <> pabs in #ruby-lang (OPN IRC)
> http://www.pablotron.org/ OpenPGP Key ID: 0x82C29562




--=20
Paul Duncan <> pabs in #ruby-lang (OPN IRC)
http://www.pablotron.org/ OpenPGP Key ID: 0x82C29562

--fK3V1lYkOC7b6W9K
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: Digital signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)

iD8DBQFBVHO/zdlT34LClWIRAj5CAJ0RhN39ZYomelKKxhidlz9imLV5ygCdES 8w
MTDykfPit9PWEgjWXgQEQCw=
=8WCb
-----END PGP SIGNATURE-----

--fK3V1lYkOC7b6W9K--


 
Reply With Quote
 
Jamis Buck
Guest
Posts: n/a
 
      09-24-2004
Paul Duncan wrote:
> * Jamis Buck () wrote:


>>"I use octal until I get to 8, and then I switch to decimal."

>
>
> Shouldn't that be "until I get to 7"?
>


Depends on how you are understanding "until". Pseudocode:

i = 0
until i == 8
puts "%o" % i
i += 1
end
puts "%d" % i

It's probably time to change my sig, anyway. I've been getting too many
raised eyebrows from it. It was meant humorously.

--
Jamis Buck

http://www.jamisbuck.org/jamis

"I use octal until I get to 8, and then I switch to decimal."


 
Reply With Quote
 
Carl Youngblood
Guest
Posts: n/a
 
      09-24-2004
> It's probably time to change my sig, anyway. I've been getting too many
> raised eyebrows from it. It was meant humorously.


I find that sigs pigeonhole me, much like bumper stickers or T-shirts
with slogans. I try to avoid them.


 
Reply With Quote
 
Paul Duncan
Guest
Posts: n/a
 
      09-24-2004
--9j/QU+CmmrcVJkVI
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

* Jamis Buck () wrote:
> Paul Duncan wrote:
> >* Jamis Buck () wrote:

>=20
> >>"I use octal until I get to 8, and then I switch to decimal."

> >
> >Shouldn't that be "until I get to 7"?
> >

>=20
> Depends on how you are understanding "until". Pseudocode:
>=20
> i =3D 0
> until i =3D=3D 8
> puts "%o" % i
> i +=3D 1
> end
> puts "%d" % i


I see an opportunity for golfing!

puts (0...map { |i| (i < 8 ? '%o' : '%d') % i }

> It's probably time to change my sig, anyway. I've been getting too many=

=20
> raised eyebrows from it. It was meant humorously.


I think it's funny .

> --=20
> Jamis Buck
>
> http://www.jamisbuck.org/jamis
>=20
> "I use octal until I get to 8, and then I switch to decimal."


--=20
Paul Duncan <> pabs in #ruby-lang (OPN IRC)
http://www.pablotron.org/ OpenPGP Key ID: 0x82C29562

--9j/QU+CmmrcVJkVI
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: Digital signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)

iD8DBQFBVHnNzdlT34LClWIRAhbMAJ95Ip0nmmcVX59qx5CyUN oWBTPoswCgrpZB
hwe9z9117VeV+ICkedWN3lo=
=cEhG
-----END PGP SIGNATURE-----

--9j/QU+CmmrcVJkVI--


 
Reply With Quote
 
Ara.T.Howard@noaa.gov
Guest
Posts: n/a
 
      09-24-2004
On Sat, 25 Sep 2004, Carl Youngblood wrote:

>> It's probably time to change my sig, anyway. I've been getting too many
>> raised eyebrows from it. It was meant humorously.

>
> I find that sigs pigeonhole me, much like bumper stickers or T-shirts
> with slogans. I try to avoid them.


luckily for me i'm a pigeon.



-a
--
================================================== =============================
| EMAIL :: Ara [dot] T [dot] Howard [at] noaa [dot] gov
| PHONE :: 303.497.6469
| A flower falls, even though we love it;
| and a weed grows, even though we do not love it.
| --Dogen
================================================== =============================
 
Reply With Quote
 
Jamis Buck
Guest
Posts: n/a
 
      09-24-2004
Carl Youngblood wrote:
>>It's probably time to change my sig, anyway. I've been getting too many
>>raised eyebrows from it. It was meant humorously.

>
>
> I find that sigs pigeonhole me, much like bumper stickers or T-shirts
> with slogans. I try to avoid them.


To each his own. I find them fun, or thought-provoking. Some of the best
laughs I've had have been reading sig-lines on Slashdot posts.

- Jamis

--
Jamis Buck

http://www.jamisbuck.org/jamis


 
Reply With Quote
 
David Ross
Guest
Posts: n/a
 
      09-24-2004
what information are you looking for specifically?

--dross

--- "Ara.T.Howard" <> wrote:

>
> any pointers other than the cvs site and rdoc stuff?
>
> -a
> --
>

================================================== =============================
> | EMAIL :: Ara [dot] T [dot] Howard [at] noaa
> [dot] gov
> | PHONE :: 303.497.6469
> | A flower falls, even though we love it;
> | and a weed grows, even though we do not love it.
> | --Dogen
>

================================================== =============================
>
>





__________________________________
Do you Yahoo!?
Yahoo! Mail - 50x more storage than other providers!
http://promotions.yahoo.com/new_mail


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Looking for good Ruby OpenSSL TLS docs Aaron D. Gifford Ruby 3 08-09-2010 09:01 AM
Getting docs on openssl in ruby Matthew Pounsett Ruby 2 07-15-2010 06:02 PM
Online docs for OpenSSL Alex 2k8 Ruby 0 05-27-2009 09:11 AM
Ruby and OpenSSL: no such file to load -- openssl (RuntimeError) Redd Vinylene Ruby 6 11-18-2008 08:51 AM
openssl request - don't hardcode PKCS1 padding (and some docs) Sam Roberts Ruby 3 12-05-2004 03:37 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57