如何使用公共加密来管理 Android 应用程序的许可?

发布于 2024-12-09 02:19:22 字数 444 浏览 0 评论 0原文

我不想在 Android Market 上发布我的应用程序,但我会根据用户设备的 MAC 地址从我的网站创建许可证密钥。它还应包括到期日期。 一旦用户在 Android 设备中输入代码,它就会被识别。 我读到可以通过使用自定义公共加密来完成。在这种情况下,我应该实现:

  1. 我的应用程序中的一个函数,它获取 MAC 地址 设备并向用户显示一个字符串。
  2. 我的网站上的一个函数拥有私钥并在第 1 点对字符串进行加密,并添加过期日期
  3. 我的应用程序中的一个函数使用公用密钥在第 2 点对字符串进行解密并验证许可证密钥。

我已经阅读了 stackoverflow 和其他网站上的许多讨论,但没有任何适用的...或者不清楚如何在我的场景中应用:(

你能给我提供解决这个问题的方法吗?有没有一些我认为是 android 原生的东西失踪了(我希望)?

非常感谢! 马可

I don't want to publish my app on Android Market, but i would create a license key from my website based on the MAC address of the user device. It should include also expiration date.
Once the user enters the code in the android device it should be recognised.
I've read that it can be done by using custom public encryption. In this scenario i should implement:

  1. A function in my application that takes the MAC address of the
    device and shows a string to the user.
  2. A function on my website that owns the private key and cipher the string at point 1. and adds expiration date
  3. A function in my application that decipher the string at point 2. using the puplic key and validates the license key.

I've read many discussions on stackoverflow and other sites but nothing applicable... or it is not clear how to apply in my scenario :(

Can you provide me e way to solve this problem? is there something that is android native that i'm missing (i hope) ?

Many thanks!
Marco

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤独岁月 2024-12-16 02:19:22

我认为实现您的意图没有什么困难:

  1. 您的许可服务器必须有自己的私钥和公钥对。
  2. 然后,您必须在第一次运行/安装期间在应用程序中创建私钥。它可以随机完成
  3. 然后您必须使用公钥在您的应用程序和服务器之间进行交换
  4. 在购买/许可过程中您的应用程序应该加密 MAC 地址或其他(gmail id、IMEI 代码等)发送到服务器 - 服务器存储密钥
  5. 以便检查发送到服务器的 MAC 密码的许可证应用程序的有效性 - 服务器将其与数据库中存储的密码进行检查

如果您不知道如何实现私钥/公钥的内容 - 阅读手册,有很多 Diffie-Hellman 的过程 - 很简单,没什么特别的

I see nothing really difficult to implement your intents:

  1. Your licensing server must have its own private and public key pairs.
  2. Then you have to create private key in your application during 1st run/install. It can be done just randomly
  3. Then you have to interchange between your application and server with public keys
  4. During buying/licensing procedure your application should encrypt MAC address or other (gmail id, IMEI code whatever) send to server - server stores key
  5. In order to check validity of license application sends to server cipher of MAC - server checks it against stored in database

If you don't know how to implement private/public keys stuff - read manuals, there're a lot of implementations of Diffie-Hellman's procedure - it's easy and nothing special there

猫瑾少女 2024-12-16 02:19:22

我希望对未通过 Play 分发的应用实施许可,并发现了以下内容:

https://code .google.com/p/droidactivator/

也许它也会对您有帮助?

I was looking to implement licensing on apps that are not distributed through Play and came across this:

https://code.google.com/p/droidactivator/

Maybe it will help you too?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文