├── .classpath ├── .project ├── AndroidManifest.xml ├── README.md ├── bin ├── AndroidManifest.xml ├── classes │ └── com │ │ └── xcj │ │ └── android │ │ └── ende │ │ ├── AES.class │ │ ├── Base64.class │ │ ├── BuildConfig.class │ │ ├── DES.class │ │ ├── Encoder.class │ │ ├── GeneralDigest.class │ │ ├── Hex.class │ │ ├── HexEncoder.class │ │ ├── HexUtil.class │ │ ├── Md5.class │ │ ├── R$attr.class │ │ ├── R$drawable.class │ │ ├── R$string.class │ │ ├── R$style.class │ │ ├── R.class │ │ ├── SHA1.class │ │ ├── SHA1Digest.class │ │ └── package-info.class ├── jarlist.cache ├── library_ende.jar └── res │ ├── drawable-hdpi │ ├── ic_action_search.png │ └── ic_launcher.png │ ├── drawable-mdpi │ ├── ic_action_search.png │ └── ic_launcher.png │ └── drawable-xhdpi │ ├── ic_action_search.png │ └── ic_launcher.png ├── gen └── com │ └── xcj │ └── android │ └── ende │ ├── BuildConfig.java │ └── R.java ├── hs_err_pid9316.log ├── libs └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── ic_action_search.png │ └── ic_launcher.png ├── drawable-mdpi │ ├── ic_action_search.png │ └── ic_launcher.png ├── drawable-xhdpi │ ├── ic_action_search.png │ └── ic_launcher.png ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── strings.xml │ └── styles.xml └── src └── com └── xcj └── android └── ende ├── AES.java ├── Base64.java ├── DES.java ├── Encoder.java ├── GeneralDigest.java ├── Hex.java ├── HexEncoder.java ├── HexUtil.java ├── Md5.java ├── SHA1.java ├── SHA1Digest.java └── package-info.java /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | library_ende 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/README.md -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /bin/classes/com/xcj/android/ende/AES.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/classes/com/xcj/android/ende/AES.class -------------------------------------------------------------------------------- /bin/classes/com/xcj/android/ende/Base64.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/classes/com/xcj/android/ende/Base64.class -------------------------------------------------------------------------------- /bin/classes/com/xcj/android/ende/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/classes/com/xcj/android/ende/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/xcj/android/ende/DES.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/classes/com/xcj/android/ende/DES.class -------------------------------------------------------------------------------- /bin/classes/com/xcj/android/ende/Encoder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/classes/com/xcj/android/ende/Encoder.class -------------------------------------------------------------------------------- /bin/classes/com/xcj/android/ende/GeneralDigest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/classes/com/xcj/android/ende/GeneralDigest.class -------------------------------------------------------------------------------- /bin/classes/com/xcj/android/ende/Hex.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/classes/com/xcj/android/ende/Hex.class -------------------------------------------------------------------------------- /bin/classes/com/xcj/android/ende/HexEncoder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/classes/com/xcj/android/ende/HexEncoder.class -------------------------------------------------------------------------------- /bin/classes/com/xcj/android/ende/HexUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/classes/com/xcj/android/ende/HexUtil.class -------------------------------------------------------------------------------- /bin/classes/com/xcj/android/ende/Md5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/classes/com/xcj/android/ende/Md5.class -------------------------------------------------------------------------------- /bin/classes/com/xcj/android/ende/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/classes/com/xcj/android/ende/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/xcj/android/ende/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/classes/com/xcj/android/ende/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/xcj/android/ende/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/classes/com/xcj/android/ende/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/xcj/android/ende/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/classes/com/xcj/android/ende/R$style.class -------------------------------------------------------------------------------- /bin/classes/com/xcj/android/ende/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/classes/com/xcj/android/ende/R.class -------------------------------------------------------------------------------- /bin/classes/com/xcj/android/ende/SHA1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/classes/com/xcj/android/ende/SHA1.class -------------------------------------------------------------------------------- /bin/classes/com/xcj/android/ende/SHA1Digest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/classes/com/xcj/android/ende/SHA1Digest.class -------------------------------------------------------------------------------- /bin/classes/com/xcj/android/ende/package-info.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/classes/com/xcj/android/ende/package-info.class -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependecy. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /bin/library_ende.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/library_ende.jar -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /bin/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/bin/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /gen/com/xcj/android/ende/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.xcj.android.ende; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /gen/com/xcj/android/ende/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | 8 | package com.xcj.android.ende; 9 | 10 | public final class R { 11 | public static final class attr { 12 | } 13 | public static final class drawable { 14 | public static int ic_action_search=0x7f020000; 15 | public static int ic_launcher=0x7f020001; 16 | } 17 | public static final class string { 18 | public static int app_name=0x7f030000; 19 | } 20 | public static final class style { 21 | public static int AppTheme=0x7f040000; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /hs_err_pid9316.log: -------------------------------------------------------------------------------- 1 | # 2 | # An unexpected error has been detected by Java Runtime Environment: 3 | # 4 | # Internal Error (classFileParser.cpp:2923), pid=9316, tid=9360 5 | # Error: ShouldNotReachHere() 6 | # 7 | # Java VM: Java HotSpot(TM) Client VM (11.0-b15 mixed mode windows-x86) 8 | # If you would like to submit a bug report, please visit: 9 | # http://java.sun.com/webapps/bugreport/crash.jsp 10 | # 11 | 12 | --------------- T H R E A D --------------- 13 | 14 | Current thread (0x012b9800): JavaThread "Unknown thread" [_thread_in_vm, id=9360, stack(0x00140000,0x00190000)] 15 | 16 | Stack: [0x00140000,0x00190000] 17 | 18 | [error occurred during error reporting (printing native stack), id 0xc0000005] 19 | 20 | 21 | --------------- P R O C E S S --------------- 22 | 23 | Java Threads: ( => current thread ) 24 | 25 | Other Threads: 26 | 27 | =>0x012b9800 (exited) JavaThread "Unknown thread" [_thread_in_vm, id=9360, stack(0x00140000,0x00190000)] 28 | 29 | VM state:not at safepoint (not fully initialized) 30 | 31 | VM Mutex/Monitor currently owned by a thread: None 32 | 33 | Dynamic libraries: 34 | 0x00400000 - 0x00424000 D:\Development\Java\jre6\bin\javaw.exe 35 | 0x775a0000 - 0x776dc000 C:\Windows\SYSTEM32\ntdll.dll 36 | 0x776f0000 - 0x777c4000 C:\Windows\system32\kernel32.dll 37 | 0x755a0000 - 0x755eb000 C:\Windows\system32\KERNELBASE.dll 38 | 0x759c0000 - 0x75a60000 C:\Windows\system32\ADVAPI32.dll 39 | 0x75910000 - 0x759bc000 C:\Windows\system32\msvcrt.dll 40 | 0x77310000 - 0x77329000 C:\Windows\SYSTEM32\sechost.dll 41 | 0x75780000 - 0x75821000 C:\Windows\system32\RPCRT4.dll 42 | 0x75c20000 - 0x75ce9000 C:\Windows\system32\USER32.dll 43 | 0x75bd0000 - 0x75c1e000 C:\Windows\system32\GDI32.dll 44 | 0x776e0000 - 0x776ea000 C:\Windows\system32\LPK.dll 45 | 0x76960000 - 0x769fd000 C:\Windows\system32\USP10.dll 46 | 0x76940000 - 0x7695f000 C:\Windows\system32\IMM32.DLL 47 | 0x77240000 - 0x7730c000 C:\Windows\system32\MSCTF.dll 48 | 0x7c340000 - 0x7c396000 D:\Development\Java\jre6\bin\msvcr71.dll 49 | 0x6d800000 - 0x6da56000 D:\Development\Java\jre6\bin\client\jvm.dll 50 | 0x75460000 - 0x75492000 C:\Windows\system32\WINMM.dll 51 | 0x75310000 - 0x7535c000 C:\Windows\system32\apphelp.dll 52 | 0x6d280000 - 0x6d288000 D:\Development\Java\jre6\bin\hpi.dll 53 | 0x75a60000 - 0x75a65000 C:\Windows\system32\PSAPI.DLL 54 | 0x6d7b0000 - 0x6d7bc000 D:\Development\Java\jre6\bin\verify.dll 55 | 0x6d320000 - 0x6d33f000 D:\Development\Java\jre6\bin\java.dll 56 | 0x6d7f0000 - 0x6d7ff000 D:\Development\Java\jre6\bin\zip.dll 57 | 58 | VM Arguments: 59 | jvm_args: -Dfile.encoding=UTF-8 -Xbootclasspath:D:\Development\android-sdk\platforms\android-14\android.jar 60 | java_command: com.xcj.android.ende.DES 61 | Launcher Type: SUN_STANDARD 62 | 63 | Environment Variables: 64 | JAVA_HOME=D:\Development\Java\jdk1.6.0_10 65 | CLASSPATH=.;D:\Development\Java\jdk1.6.0_10\lib\dt.jar;D:\Development\Java\jdk1.6.0_10\lib\tools.jar 66 | PATH=D:/Development/Java/jre6/bin/client;D:/Development/Java/jre6/bin;D:/Development/Java/jre6/lib/i386;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\OpenCL SDK\2.0\bin\x86;C:\Program Files\TortoiseSVN\bin;D:\Development\android-sdk\tools;D:\Development\android-sdk\platform-tools;D:\Program Files\Git\cmd;D:\Development\Java\jdk1.6.0_10\bin;D:\Development\Java\jdk1.6.0_10\jre\bin;D:\Development\apache-ant-1.8.3\bin;D:\Development\apache-ant-1.8.3\lib;D:\Program Files\Rational\common;D:\eclipse_java; 67 | USERNAME=chunjiang.shieh 68 | OS=Windows_NT 69 | PROCESSOR_IDENTIFIER=x86 Family 6 Model 42 Stepping 7, GenuineIntel 70 | 71 | 72 | 73 | --------------- S Y S T E M --------------- 74 | 75 | OS: Windows NT 6.1 Build 7601 Service Pack 1 76 | 77 | CPU:total 2 (8 cores per cpu, 2 threads per core) family 6 model 10 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, ht 78 | 79 | Memory: 4k page, physical 2097151k(858760k free), swap 4194303k(2865392k free) 80 | 81 | vm_info: Java HotSpot(TM) Client VM (11.0-b15) for windows-x86 JRE (1.6.0_10-rc2-b32), built on Sep 12 2008 00:52:11 by "java_re" with MS VC++ 7.1 82 | 83 | time: Fri Nov 09 14:29:11 2012 84 | elapsed time: 0 seconds 85 | 86 | -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/libs/android-support-v4.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-14 15 | android.library=true 16 | -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunjiangshieh/android-library-crypto/95f32497272d1cce09b021587e960c2b0d6cc786/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |