As3 Crypto

Cryptography , | Leave a comment

As3 Crypto is a cryptography library written in Actionscript 3 that provides several common algorithms. This version also introduces a TLS engine (TLS is commonly known as SSL.)

  • Protocols: TLS 1.0 support (partial)
  • Certificates: X.509 Certificate parsing and validation, built-in Root CAs.
  • Public Key Encryption: RSA (encrypt/decrypt, sign/verify)
  • Secret Key Encryption: AES, DES, 3DES, BlowFish, XTEA, RC4
  • Confidentiality Modes: ECB, CBC, CFB, CFB8, OFB, CTR
  • Hashing Algorithms: MD2, MD5, SHA-1, SHA-224, SHA-256
  • Paddings available: PKCS#5, PKCS#1 type 1 and 2
  • Other Useful Stuff: HMAC, Random, TLS-PRF, some ASN-1/DER parsing

EventController

Misc , | 2 Comments

Event Controller is an easier way to keep track of events in actionscript 3. Event Controller is a simple extension to your normal workflow that allows you to easily tag, group and remove any and all events. Some of the features:

  • stop worrying about events and memory leaks.
  • manage events without extra code and without changing your style of coding.
  • create cluster names to events for quicker monitoring and removal.
  • remove and add single events very similar to the original flash syntax.
  • remove all events of an object with one simple line of code.
  • remove all events of a cluster of objects with one simple line of code.
  • use the power of regexp to find and remove events.
  • log and output all events with Event Controller.

De MonsterDebugger

Debug , | 1 Comment

De MonsterDebugger is an open source debugger for Adobe Flash, Flex and AIR. De MonsterDebugger is made in Flex and AIR by design studio De Monsters.

Tweener

Tweening , | Leave a comment

Tweener is a class used to create tweenings and other transitions via ActionScript code for projects built on the Flash platform.

Popforge (audio)

Sound , | Leave a comment

Popforge AS3 audio library allows you to create a valid flash.media.Sound object with your own samples. You can create synthesizers, effects and sample-players of any kind. The supplied AudioBufferclass allows you to create endless audio playback.