Open GoogleCodeExporter opened 9 years ago
Did you ever happen to get this figured out? I'm encountering it now, myself,
and I'm
a bit stumped.
Original comment by cnunci...@gmail.com
on 14 Dec 2009 at 11:02
No. I don't really know much about TLS and I haven't had the time to really
look at
the code. You could use AIR 2.0 beta. It has native support for TLS/SSL sockets.
Original comment by pedrosland@gmail.com
on 15 Dec 2009 at 12:34
at least the BooleanType.as has no implementation for the function
fromDERContent
inherited from ASN1Type.as. And this lack of implemention caused similar
problems
here, which I have by-passed, adding impl code for BooleanType. maybe you can
try.
Original comment by sen.zh...@gmail.com
on 28 Jan 2010 at 7:58
Here's the missing function:
/**
* Decodes a boolean from the DER stream (one octet)
*
* @param s
* @param length
* @return true if the next byte is nonzero.
*
*/
protected override function fromDERContent(s:ByteArray, length:int):* {
return s.readBoolean();
}
Original comment by billbras...@gmail.com
on 8 Mar 2010 at 11:13
Freaking awesome... does anyone actually update this thing anymore, it would be
helpful to get this fix into the project rather than buried in here...
Original comment by mar...@fr1n63.com
on 18 Nov 2010 at 6:09
I just building code send mail(smtp).
I have fixed this line success!
Thanks for the guidance function. But why not update it to the main code(svn)?
Original comment by hungcon...@gmail.com
on 26 Apr 2011 at 6:14
Original issue reported on code.google.com by
pedrosland@gmail.com
on 17 Sep 2009 at 1:13Attachments: