23
Total Control over your protection and licensing process Ruediger Kuegler VP Sales & Professional Services Martin Hofmann Senior Software Developer CodeMeter Core API 2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 1

CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

  • Upload
    others

  • View
    33

  • Download
    0

Embed Size (px)

Citation preview

Page 1: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

Total Control over your protection

and licensing process

Ruediger Kuegler

VP Sales & Professional Services

Martin Hofmann

Senior Software Developer

CodeMeter Core API

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 1

Page 2: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

CodeMeter Overview

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 2

Page 3: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

The Overall Picture of Protection and Licensing

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 3

▪ CodeMeter

▪ License Models

▪ CodeMeter Variants

▪ Software Integration

▪ Automatic Encryption

▪ API Calls

▪ Back-Office Integration

▪ ERP / e-commerce / MES / CRM

▪ Software Activation

Software IntegrationCodeMeter Protection Suite / CodeMeter Core API

Back-Office IntegrationCodeMeter License Central

CodeMeterRuntime

CodeMeterEmbedded

µEmbedded

Page 4: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

Software Integration

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 4

Page 5: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

Key Facts about CodeMeter

▪ Symmetric Encryption

▪ 128-bit / 256-bit AES (Advanced Encryption Standard)

▪ Used for software and data protection

▪ Asymmetric Encryption

▪ 224-bit ECC (Elliptic Curve Cryptography)

▪ 1024-bit / 2048-bit / 4096-bit RSA (Rivest Shamir Adleman)

▪ Used for signatures, authentication, and Software as a Service (SaaS)

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 5

Page 6: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

Software Integration – Overview

▪ CodeMeter Protection Suite (Automatic Encryption)

▪ AxProtector, AxProtector .NET, AxProtector Java

▪ Windows 32-bit / 64-bit, macOS, Linux, .NET Assemblies, Java J2SE and J2EE

▪ Software Protection API (WUPI)

▪ Included in CodeMeter Protection Suite

▪ IxProtector, AxProtector .NET, AxProtector Java

▪ Encryption of code parts, Automatic implementation of cryptography

▪ CodeMeter Core API

▪ Basic API; all other APIs and tools are based on it

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 6

Page 7: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

CodeMeter

Protection

Suite

Software Integration – Overview

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 7

CodeMeter Core API

Software

Protection API

(WUPI)

High Level

Programming API

(HIP)

Page 8: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

Software Protection API

(WUPI)

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 8

Page 9: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

WUPI Markups in Code (.NET)

// function uses LicenseList with ID 1

[Licensing(LicenseList = 1)]

private void ChangeFont()

{

FontDialog dlgFont = new FontDialog();

}

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 9

Page 10: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

WUPI Calls in Code (.NET)

// check if the license for module 1 (font) is available

if (Wupi.CheckLicense(1))

{

ChangeFont();

}

else

{

MessageBox.Show("This module has not been activated!",

"License Error",

MessageBoxButtons.OK, MessageBoxIcon.Error);

}

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 10

Page 11: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

AxProtector .NET and WUPI in a Nutshell

▪ Automatic encryption of a .NET application

▪ Simple, quick, and secure

▪ Encryption of individual methods, classes, namespaces with different Product

Codes

▪ WUPI Calls

▪ WUPI for interaction / user guidance

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 11

Page 12: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

CodeMeter Core API

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 12

Page 13: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

CodeMeter Runtime in Detail

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 13

CmDongle CmActLicense

Software

Additional Tools

(cmu, CmDust)

CodeMeter

Control Center

CodeMeter Core API -

Dynamic Libraries

CodeMeter License Server

Browser

CodeMeter WebAdmin

LAN/WAN ServerCmCloudContainer

Page 14: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

CodeMeter Core API – Basic Functions

// Access license

CmAccess2(…)

// Use license

CmCrypt2(…)

// Read license properties

CmGetInfo(…)

// Release license

CmRelease(…)

// Error handling

CmGetLastErrorCode(…)

// Create license request

CmGetRemoteContextBuffer(…)

// Import license update

CmExecuteRemoteUpdate(…)

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 14

Page 15: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

Demo

Demo 12019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 15

Page 16: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

Summary Demo 1

▪ Integration of Library (WibuCmNet.dll)

▪ Basic calls

▪ CmAccess2

▪ CmGetLastErrorCode2

▪ CmRelease

▪ Results

▪ Easy license check

▪ No advanced security

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 16

Page 17: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

Demo

Demo 22019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 17

Page 18: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

Summary Demo 2

▪ Additional call

▪ CmCrypt2

▪ CmGetInfo

▪ Results

▪ Cryptographic checks

▪ Check of Expiration Time in CmContainer

▪ Start of Usage Period

▪ Decrease of Unit Counter

▪ Locking of Firm Item with FAC decrement

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 18

Page 19: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

Management Functions

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 19

Page 20: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

Sample of CodeMeter API Guide / License Manager

▪ Listing all CmContainers

▪ CmGetBoxes

▪ Retrieving license information

▪ CmGetInfo with handle to Firm Item

▪ CmGetInfo with handle Product Item

▪ Borrowing Licenses

▪ LT Transfer functions

▪ CodeMeter License Central

▪ Creating context files and importing update files

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 20

Page 21: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

Summary

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 21

Page 22: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

Summary

▪ CodeMeter offers 3 options for software integration

▪ CodeMeter Protection Suite

▪ Software Protection API (WUPI) in combination with CodeMeter Protection Suite

▪ CodeMeter Core API

▪ All 3 options can be combined with each other

▪ CodeMeter Protection Suite and WUPI are using CodeMeter Core API

themselves

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 22

Page 23: CodeMeter Core API - Wibu · 2019. 11. 7. · Software Protection API (WUPI) Included in CodeMeter Protection Suite IxProtector, AxProtector .NET, AxProtector Java Encryption of code

https://www.wibu.com

[email protected]

Europe: +49-721-931720

USA: +1-425-7756900

China: +86-21-55661790

Japan: +81-3-43608205

Thank you for your attention

2019-11-06 © WIBU-SYSTEMS AG 2019 - Total Control over your protection and licensing process 23