• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

Can't use EncryptionKeyGenerator

New Here ,
Jun 29, 2018 Jun 29, 2018

Copy link to clipboard

Copied

Hi!

I'm trying to encrypt a local DB in an Air Application. Using the example I found here: Working with the encrypted local SQLite database | Adobe Developer Connection

I use command line to compile the project and it seems I have to import the as3corelib but I just don't know how to. Can someone give an explanation on how to import that library to use EncryptKeyGeneration class?.

Thanks in advance,

Ale

TOPICS
Development

Views

270

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Engaged , Jun 29, 2018 Jun 29, 2018

You should be able to grab the as3corelib from github and use it in your project:

GitHub - mikechambers/as3corelib: An ActionScript 3 Library that contains a number of classes and utilities for working …

Click the green "Clone on download" button and choose "Download ZIP", then in the src folder, copy that "com" directory into your main project directory (or copy the "adobe" directory inside of that to your own "com" directory if your project already has one for your own code).

Once that's there,

...

Votes

Translate

Translate
Engaged ,
Jun 29, 2018 Jun 29, 2018

Copy link to clipboard

Copied

LATEST

You should be able to grab the as3corelib from github and use it in your project:

GitHub - mikechambers/as3corelib: An ActionScript 3 Library that contains a number of classes and ut...

Click the green "Clone on download" button and choose "Download ZIP", then in the src folder, copy that "com" directory into your main project directory (or copy the "adobe" directory inside of that to your own "com" directory if your project already has one for your own code).

Once that's there, in your own code you should be able to do an import and start using it:

import com.adobe.air.crypto.EncryptionKeyGenerator;

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines