필터 지우기
필터 지우기

Missing licence error for a product i dont need

조회 수: 3 (최근 30일)
Benedikt L
Benedikt L 2019년 3월 15일
댓글: Benedikt L 2019년 3월 18일
Hello,
I'm using R2017b, Output of ver:
-----------------------------------------------------------------------------------------------------
MATLAB Version: 9.3.0.713579 (R2017b)
MATLAB License Number: xxxxxxxxxxx
Operating System: Microsoft Windows 7 Enterprise Version 6.1 (Build 7601: Service Pack 1)
Java Version: Java 1.8.0_121-b13 with Oracle Corporation Java HotSpot(TM) 64-Bit Server VM mixed mode
-----------------------------------------------------------------------------------------------------
MATLAB Version 9.3 (R2017b)
Simulink Version 9.0 (R2017b)
I want to use some of the RSA capabilities of Java for a MATLAB project.
This is my code:
keygen = java.security.KeyPairGenerator.getInstance("RSA");
keygen.initialize(2048);
key = keygen.generateKeyPair;
cipher = javax.crypto.Cipher.getInstance('RSA');
cipher.init(cipher.ENCRYPT_MODE, key);
This code gives me the following error output:
To use 'init', at least one of the following products must be licensed, installed, and enabled:
Neural Network Toolbox
System Identification Toolbox
Error in Untitled (line 6)
cipher.init(cipher.ENCRYPT_MODE, key);
I don't think that I need this kind of Toolboxes for this Java-RSA functionality. Is it a bug? How can I fix it?
Best regards
Benedikt

채택된 답변

Andreas Goser
Andreas Goser 2019년 3월 18일
편집: Andreas Goser 2019년 3월 18일
Not knowing what the code actually does, I can the following error:
cipher.init(cipher.ENCRYPT_MODE, key);
No method 'init' with matching signature found for class 'javax.crypto.Cipher'.
And ecesuting "license('inuse')" after that only returns MATLAB. So your assumption might be true, those products are not needed, but it does not explain the different behaviour. Did you install any 3rd party toos? Anything that modifies search paths or shadows existing functionality? You may want to try:
rehash toolboxcache
restoredefaultpath
savepath
  댓글 수: 1
Benedikt L
Benedikt L 2019년 3월 18일
Thank you Andreas, your answer showed me the right track.
The root of the problem was in the argument type of the java function. Sadly it was hard to find the problem due to the misleading error message.
Best regards
Benedikt

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

제품


릴리스

R2017b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by