نمایش نتایج 1 تا 11 از 11

نام تاپیک: طرز کار برنامه CryptoLicensing Generator

  1. #1
    کاربر دائمی
    تاریخ عضویت
    اسفند 1388
    محل زندگی
    Tehran
    پست
    453

    طرز کار برنامه CryptoLicensing Generator

    سلام دوستان

    برنامه Cryptolicensing Generator برنامه ای برای قرار دادن License بر روی برنام هست , کسی طرز کارش رو میدونه؟

  2. #2
    کاربر دائمی
    تاریخ عضویت
    اسفند 1388
    محل زندگی
    Tehran
    پست
    453

    نقل قول: طرز کار برنامه CryptoLicensing Generator

    کسی آموزش این نرم افزار رو داره؟

  3. #3
    کاربر دائمی
    تاریخ عضویت
    اسفند 1388
    محل زندگی
    Tehran
    پست
    453

    نقل قول: طرز کار برنامه CryptoLicensing Generator

    کسی نیست آموزش بده؟

  4. #4

    نقل قول: طرز کار برنامه CryptoLicensing Generator

    اگر کسی پیدا بشه و آموزش بده عالی میشه...

  5. #5
    کاربر دائمی
    تاریخ عضویت
    تیر 1390
    محل زندگی
    کرمانشاه
    پست
    1,487

    نقل قول: طرز کار برنامه CryptoLicensing Generator

    برنامه اش رو قرار بدید تا تست کنم

  6. #6
    کاربر دائمی آواتار Mojtaba0
    تاریخ عضویت
    اسفند 1390
    محل زندگی
    ایران
    سن
    35
    پست
    124

    نقل قول: طرز کار برنامه CryptoLicensing Generator

    به نظرم لایسنس نرم افزار رو خودتون با یه الگوریتمی اختصاصی چک کنید تا امکان کرک بیاد پایین.

  7. #7
    کاربر دائمی
    تاریخ عضویت
    تیر 1390
    محل زندگی
    کرمانشاه
    پست
    1,487

    نقل قول: طرز کار برنامه CryptoLicensing Generator

    نرم افزار خوبیه . دوست دارم تست اش کنم . بی زحمت قرار بدید

  8. #8
    کاربر دائمی آواتار Mojtaba0
    تاریخ عضویت
    اسفند 1390
    محل زندگی
    ایران
    سن
    35
    پست
    124

    نقل قول: طرز کار برنامه CryptoLicensing Generator

    نقل قول نوشته شده توسط Mojtaba0 مشاهده تاپیک
    به نظرم لایسنس نرم افزار رو خودتون با یه الگوریتمی اختصاصی چک کنید تا امکان کرک بیاد پایین.
    نظر من همینه.

    ولی این لینک ورژن 2012:
    http://soft98.ir/software/programmin...licensing.html

  9. #9

    نقل قول: طرز کار برنامه CryptoLicensing Generator


  10. #10
    کاربر دائمی آواتار Mojtaba0
    تاریخ عضویت
    اسفند 1390
    محل زندگی
    ایران
    سن
    35
    پست
    124

    نقل قول: طرز کار برنامه CryptoLicensing Generator

    نرم افزار های مشابه:

    Eziriz IntelliLock

    Enigma حفاظت کد و ساخت trial

  11. #11

    نقل قول: طرز کار برنامه CryptoLicensing Generator

    CryptoLicensing For .Net – License Your Software

    On 11 September, 2013 07:00:37, in Reviewed, by Dirk Strauss




    CryptoLicensing – In a previous article I talked about Crypto Obfuscator For .Net which obfuscates your source code allowing you to protect your intellectual property.As part of this first line of defense, you need to enable licensing in your commercially available software. CryptoLicensing from LogicNP Software is a very good and feature packed licensing tool.Enabling the logic in your code is really easy. Follow along with the code samples below.CryptoLicensing – Add License Valiation Easily

    When you start CryptoLicensing, you need to specify where to create a new License Project. This project you will never make publicly available and needs to be secured from prying eyes. You will generally treat this like you do your unobfuscated source code.As a quick start, after saving your project, click on the ‘Project’ menu and select to get a validation key and code.The validation key will be displayed to you in a separate window along with a bit of sample source code.Heading over to Visual Studio, add a reference to the LogicNP.CryptoLicensing dll.After adding it, you will see it available under your references in the solution explorer.Next, add a new class called ‘LicenseValidation.cs’ to your project.In the new class, add a Validate method that uses the validation key provided by the CryptoLicensing application above. Allow the constructor to take the license code as parameter.Moving back to the CryptoLicensng tool, you can see that every new CryptoLicensing project comes with two default profiles (Normal License or 30-day evaluation license). CryptoLicensing allows you to create multiple profiles and associate different settings for each profile. This allows you to quickly generate a license based on the specific profile you select. For this example,we’ll just use the default normal license.Click on the ‘Generate’ button.This will generate as many codes for you as you specify in the codes count next to the ‘Generate’ button.These are the codes you will be giving to the users of your software.In the Program.cs file of your application, you will generally read the user license from a file or an application setting or some other store. For the purposes of this example, I’ll just hard code it in the app. The static void main uses the license code provided by the user and validates this against the LicenseValidation class created earlier. If the license is valid, the application will run. If not, a warning message is displayed to the user.CryptoLicensing – Add License Features Easily

    Sometimes you will activate certain features in your application, based on the license type you provide. For this example, let’s use the previously written weather forecast app and assume that there is an additional license that allows the user to view a five day forecast.Select one of the feature slots available.You can now rename the feature slot to make it easier to identify later on.Select the new feature and generate a new license code.Modify the LicenseValidation class we created earlier and create an enum for the feature types (This also makes the features more easily referenced). Move the CryptoLicense object outside the scope of the Validate method to make it visible to the rest of the class.Add a new method to the LicenseValidation class that checks if the specific feature is present. This method will simply return a boolean value.In the constructor of the main form, add a boolean parameter that will enable or disable the button that displays the five day forecast.In the Program.cs file, change the code slightly to pass the result from the ‘EnableFiveDayForecast’ method to the main form’s constructor.Running the application with a license that includes the five day forecast functionality, you will notice that the button is enabled.Back in the CryptoLicensing tool, unselect the ’5 Day Forecast’ feature and generate a new user license code. Paste that in your Program.cs file and run your application again.This time you will see that the feature was not validated and the button is disabled. This example might be a bit granular for many applications, but I wanted to highlight this functionality specifically. I would generally just define a version of the software (Standard, Professional, Enterprise etc.) and enable or disable a collection of features at a time.CryptoLicensing – Other Settings

    CryptoLicensing is truly a feature rich tool. You can specify the following:
    • The number of users in the license
    • Detection for date rollback
    • Detect if your software is running under a debugger or tracer
    • Detect and prevent your application from running in a remote desktop, terminal services or Citrix
    • Explicitly set the ID instead of letting CryptoLicense do it for you
    • Force an expiration date


    • Various settings for evaluation software
    • Specify a license that is locked to a specific machine
    • Specifies that the license requires activation via a license server

    This is a tool that is definitely worth checking out. It is really easy to integrate with your existing software and provides excellent management of your licenses. To fully appreciate all the features of CryptoLicensing For .Net, download an evaluation copy and try it out for yourself.


تاپیک های مشابه

  1. دانلود برنامه Sql Generator برای کار با Sql Server
    نوشته شده توسط mmd2009 در بخش T-SQL
    پاسخ: 1
    آخرین پست: چهارشنبه 30 بهمن 1392, 09:08 صبح
  2. سوال در مورد طرز کار برنامه هایی شبیه MMB
    نوشته شده توسط ایمان اختیاری در بخش گفتگوی عمومی کامپیوتر و فناوری اطلاعات
    پاسخ: 2
    آخرین پست: دوشنبه 01 آبان 1391, 14:36 عصر
  3. دانلود برنامه Sql Generator برای کار با Sql Server
    نوشته شده توسط mmd2009 در بخش C#‎‎
    پاسخ: 0
    آخرین پست: جمعه 13 آبان 1390, 18:23 عصر
  4. طرز کار برنامه setup builder
    نوشته شده توسط ICANICAN در بخش C#‎‎
    پاسخ: 0
    آخرین پست: دوشنبه 25 مهر 1390, 07:23 صبح
  5. طرز کار برنامه MadCollection
    نوشته شده توسط Mask در بخش مباحث عمومی دلفی و پاسکال
    پاسخ: 5
    آخرین پست: سه شنبه 19 آذر 1387, 19:09 عصر

قوانین ایجاد تاپیک در تالار

  • شما نمی توانید تاپیک جدید ایجاد کنید
  • شما نمی توانید به تاپیک ها پاسخ دهید
  • شما نمی توانید ضمیمه ارسال کنید
  • شما نمی توانید پاسخ هایتان را ویرایش کنید
  •