Hi all,
I want to create a curve from data which are store in a java list.
Can anybody help me.
Thanks.
It is currently Wed Oct 15, 2025 12:27 pm
DocumentSettingsPart dsp = doc.getDocumentSettingsPart();
ObjectFactory factory = new ObjectFactory();
CTDocProtect protection = factory.createCTDocProtect();
protection.setEdit(STDocProtect.COMMENTS);
protection.setEnforcement(true);
protection.setCryptProviderType(STCryptProv.RSA_FULL);
protection.setCryptAlgorithmClass(STAlgClass.HASH);
protection.setCryptAlgorithmType(STAlgType.TYPE_ANY);
protection.setCryptAlgorithmSid(BigInteger.valueOf(4));
protection.setCryptSpinCount(BigInteger.valueOf(100000));
protection.setHash(???);
protection.setSalt(???);
dsp.getJaxbElement().setDocumentProtection(protection);
Total posts 10200 • Total topics 2872 • Total members 2100