Skip to content

Commit 0d76421

Browse files
authored
V1.1 (#5)
* Make it easier to import RSA Public Key * Set up automatic jar file creation * Add example-app which shows how to perform license key verification with the latest cryptolens.jar file.
1 parent 0fd4e1c commit 0d76421

File tree

20 files changed

+927
-143
lines changed

20 files changed

+927
-143
lines changed

.gitignore

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,96 @@
77

88
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
99
hs_err_pid*
10+
11+
target/
12+
13+
# Compiled class file
14+
*.class
15+
16+
# Log file
17+
*.log
18+
19+
# BlueJ files
20+
*.ctxt
21+
22+
# Mobile Tools for Java (J2ME)
23+
.mtj.tmp/
24+
25+
# Package Files #
26+
*.jar
27+
*.war
28+
*.nar
29+
*.ear
30+
*.zip
31+
*.tar.gz
32+
*.rar
33+
34+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
35+
hs_err_pid*
36+
37+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
38+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
39+
40+
# User-specific stuff
41+
.idea/**/workspace.xml
42+
.idea/**/tasks.xml
43+
.idea/**/usage.statistics.xml
44+
.idea/**/dictionaries
45+
.idea/**/shelf
46+
47+
# Generated files
48+
.idea/**/contentModel.xml
49+
50+
# Sensitive or high-churn files
51+
.idea/**/dataSources/
52+
.idea/**/dataSources.ids
53+
.idea/**/dataSources.local.xml
54+
.idea/**/sqlDataSources.xml
55+
.idea/**/dynamic.xml
56+
.idea/**/uiDesigner.xml
57+
.idea/**/dbnavigator.xml
58+
59+
# Gradle
60+
.idea/**/gradle.xml
61+
.idea/**/libraries
62+
63+
# Gradle and Maven with auto-import
64+
# When using Gradle or Maven with auto-import, you should exclude module files,
65+
# since they will be recreated, and may cause churn. Uncomment if using
66+
# auto-import.
67+
# .idea/modules.xml
68+
# .idea/*.iml
69+
# .idea/modules
70+
71+
# CMake
72+
cmake-build-*/
73+
74+
# Mongo Explorer plugin
75+
.idea/**/mongoSettings.xml
76+
77+
# File-based project format
78+
*.iws
79+
80+
# IntelliJ
81+
out/
82+
83+
# mpeltonen/sbt-idea plugin
84+
.idea_modules/
85+
86+
# JIRA plugin
87+
atlassian-ide-plugin.xml
88+
89+
# Cursive Clojure plugin
90+
.idea/replstate.xml
91+
92+
# Crashlytics plugin (for Android Studio and IntelliJ)
93+
com_crashlytics_export_strings.xml
94+
crashlytics.properties
95+
crashlytics-build.properties
96+
fabric.properties
97+
98+
# Editor-based Rest Client
99+
.idea/httpRequests
100+
101+
# Android studio 3.1+ serialized cache file
102+
.idea/caches/build_file_checksums.ser

.idea/.name

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/artifacts/cryptolens_jar.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)