BlinkID C SDK version 5.16.0
|
Go to the source code of this file.
Functions | |
MB_API MBRecognizerErrorStatus MB_CALL | recognizerAPIUnlockWithLicenseKey (char const *licenseKeyBase64) |
Unlocks the SDK with given license key encoded as base64 string. NOTE: This function is not thread safe. More... | |
MB_API MBRecognizerErrorStatus MB_CALL | recognizerAPIUnlockWithLicenseBuffer (MBByte const *licenseBuffer, size_t licenseBufferLength) |
Unlocks the SDK with given license key presented as raw buffer. NOTE: This function is not thread safe. More... | |
MB_API MBRecognizerErrorStatus MB_CALL | recognizerAPIUnlockForLicenseeWithLicenseKey (char const *licenseKeyBase64, char const *licensee) |
Unlocks the SDK with given license key encoded as base64 string. NOTE: This function is not thread safe. More... | |
MB_API MBRecognizerErrorStatus MB_CALL | recognizerAPIUnlockForLicenseeWithLicenseBuffer (MBByte const *licenseBuffer, size_t licenseBufferLength, char const *licensee) |
Unlocks the SDK with given license key presented as raw buffer. NOTE: This function is not thread safe. More... | |
Copyright (c)2018 Microblink Ltd. All rights reserved.
ANY UNAUTHORIZED USE OR SALE, DUPLICATION, OR DISTRIBUTION OF THIS PROGRAM OR ANY OF ITS PARTS, IN SOURCE OR BINARY FORMS, WITH OR WITHOUT MODIFICATION, WITH THE PURPOSE OF ACQUIRING UNLAWFUL MATERIAL OR ANY OTHER BENEFIT IS PROHIBITED! THIS PROGRAM IS PROTECTED BY COPYRIGHT LAWS AND YOU MAY NOT REVERSE ENGINEER, DECOMPILE, OR DISASSEMBLE IT.
MB_API MBRecognizerErrorStatus MB_CALL recognizerAPIUnlockForLicenseeWithLicenseBuffer | ( | MBByte const * | licenseBuffer, |
size_t | licenseBufferLength, | ||
char const * | licensee | ||
) |
Unlocks the SDK with given license key presented as raw buffer. NOTE: This function is not thread safe.
licenseBuffer | Buffer containing the entire license file. |
licenseBufferLength | Length of licenseBuffer. |
licensee | Licensee to which license key is bound. |
MB_API MBRecognizerErrorStatus MB_CALL recognizerAPIUnlockForLicenseeWithLicenseKey | ( | char const * | licenseKeyBase64, |
char const * | licensee | ||
) |
Unlocks the SDK with given license key encoded as base64 string. NOTE: This function is not thread safe.
licenseKeyBase64 | License key as base64 encoded string bound to given licensee which allows usage inside multiple applications. |
licensee | Licensee to which license key is bound. |
MB_API MBRecognizerErrorStatus MB_CALL recognizerAPIUnlockWithLicenseBuffer | ( | MBByte const * | licenseBuffer, |
size_t | licenseBufferLength | ||
) |
Unlocks the SDK with given license key presented as raw buffer. NOTE: This function is not thread safe.
licenseBuffer | Buffer containing the entire license file. |
licenseBufferLength | Length of licenseBuffer |
MB_API MBRecognizerErrorStatus MB_CALL recognizerAPIUnlockWithLicenseKey | ( | char const * | licenseKeyBase64 | ) |
Unlocks the SDK with given license key encoded as base64 string. NOTE: This function is not thread safe.
licenseKeyBase64 | License key as base64 encoded string bound to current package name/bundle id which will be used for unlocking. |