Tagged Questions
The as3crypto tag has no wiki summary.
3
votes
1answer
132 views
Multipass login to assistly.com with as3crypto
I'm trying to automatically login my users into assistly.com with their multipass login as described here: http://dev.assistly.com/docs/portal/multipass
I have tried to convert their code examples ( ...
3
votes
1answer
178 views
as3crypto issue
I am using the as3crypto library to get the AES algorithm working on a small project that i am doing. This is how i get the crypto function :
var cipher:ICipher = Crypto.getCipher("simple-aes-cbc", ...
2
votes
0answers
379 views
SignatureDoesNotMatch on Amazon S3 multipart uploader
I'm working on AS3 multipart uploader. I'm using this documentation http://docs.amazonwebservices.com/AmazonS3/latest/dev/index.html?RESTAuthentication.html for building signature. Here is my example:
...
1
vote
0answers
179 views
Connecting to an SSL server with self-signed cert in Flash
Using as3crypto's TLSSocket it should be possible to connect to an SSL server. However, my server uses a self-signed certificate. How can I configure the client to accept that certificate?
I'm ...
1
vote
1answer
462 views
Adobe Air encryption of mp3 file with as3crypto only encrypts the first few bytes
I am using the as3crypto library to encrypt mp3 files in an Adobe Air application. The code below runs without error but I realized that only the first few bytes of the mp3 file are getting encrypted ...
1
vote
1answer
716 views
Flex/AIR Encryption/Decryption library (alternative to as3crypto)
Hey stackoverflow community,
I was wondering if anyone knew of any built-in Flex libraries that support encryption/decryption. I see that most people recommend AS3Crypto, are there other ...
1
vote
2answers
613 views
Padding error in as3Crypto when trying to work a-sync
I'm trying to encrypt/decrypt files in flex (AIR) using the as3crypto package.
the problem is that when attempting to process slightly large files (over 5M) the process time gets ridiculously long and ...
0
votes
0answers
82 views
Getting “javax.crypto.BadPaddingException: Data must start with zero” when attempting to decrypt an Actionscript-encrypted text with as3crypto library
My problem is:
I have a client-side program written in actionscript for encrypting text in RSA which communicates with a server-side program written in java for decrypting text in ...
0
votes
0answers
65 views
Flex as3crypto format generated RSA key to PEM format
Does anyone know how to format RSA key that generated as3crypto into PEM format ?
I need to transmit public key that generated dynamically by as3crypto into the server.
0
votes
1answer
356 views
Errors decrypting as3crypto blowfish data in PHP
I'm kind of new to ActionScript 3 at the moment and been trying to use the as3crypto library to encrypt some data with the blowfish algorithm before submitting it to the server for processing. I know ...
0
votes
1answer
421 views
Getting as3crypto to work with ruby (Gibberish/EzCrypto)
I'm trying to get as3crypto to play nice with either Gibberish or EzCrypto in AES-128 mode.
No matter what combination of settings I use I simply cannot get one to decrypt the other, and usually get a ...
0
votes
0answers
107 views
using Tweetr library to send non-english characters
Tweetr is a simple to use AS3 Twitter API library.
Here is a sample code to update twitter status
AS3Crypto Library is required
import com.swfjunkie.tweetr.Tweetr;
import ...
0
votes
1answer
238 views
RSA sign function problem
I'm working on an RSA sign() function for generating a signed URL for private streaming. I was testing on PHP code, but I want to re-code that in Flex. Here is the part of PHP code:
function ...
0
votes
0answers
491 views
Decrypt aes-128-cbc in AS3 with salt
I'm trying to decrypt data that was encrypted with aes-128-cbc with a salt using openssl in as3 using as3crypto.
var keyString:String = "test";
var key:ByteArray = new ByteArray();
...
0
votes
1answer
167 views
TLS error codes in as3crypto
I am using TLSSocket (part of as3crypto). Every now and then I see this in my console:
GOT ALERT! type=51
and then the socket will close. It appears that this is the error handling in ...
0
votes
2answers
478 views
sha1 hash from as3crypto differs from the one made with PHP
Make SHA1 hash from string '12345' with as3crypto in as3 the same way how it is done in there example:
var sha1:SHA1 = new SHA1;
var src:ByteArray = Hex.toArray("12345");
var digest:ByteArray = ...
0
votes
1answer
169 views
XML in flash that should fetch data from an external xml file
Well, i am new in this flash thing and in the learning stage. on the stage are four buttons. they will behave like map. now what i want to do is, that i want to use xml. when i click on button, it ...
0
votes
1answer
543 views
Base64 encoded output differs from as3crypto and pycrypto encryption libraries
I'm trying to use symmetric encryption to pass data from actionscript 3 (client) to python (server).
The libraries I'm using are as3crypto and pycrypto, I'm not sure if I'm using these libraries ...
0
votes
1answer
391 views
Why does as3crypto say “Invalid padding value”?
What is the cause of the error "Invalid padding value" in as3crypto?
Error: PKCS#5:unpad: Invalid padding value. expected [153], found [25]
at com.hurlant.crypto.symmetric::PKCS5/unpad()
at ...
0
votes
1answer
1k views
AS3Crypto RSA Signing
I'm having some troubles matching the value returned from RSA signing
a Base64 SHA1 hash in the actionscript as3crypto library with the result returned in c#.
I'm passing in a Base64 hash decoded as ...