Example usage for org.bouncycastle.pkcs.jcajce JcePKCSPBEOutputEncryptorBuilder build

List of usage examples for org.bouncycastle.pkcs.jcajce JcePKCSPBEOutputEncryptorBuilder build

Introduction

In this page you can find the example usage for org.bouncycastle.pkcs.jcajce JcePKCSPBEOutputEncryptorBuilder build.

Prototype

public OutputEncryptor build(final char[] password) throws OperatorCreationException 

Source Link

Usage

From source file:org.xipki.commons.security.pkcs11.emulator.PrivateKeyCryptor.java

License:Open Source License

PrivateKeyCryptor(final char[] password) throws P11TokenException {
    ParamUtil.requireNonNull("password", password);
    JcePKCSPBEOutputEncryptorBuilder eb = new JcePKCSPBEOutputEncryptorBuilder(ALGO);
    eb.setProvider("BC");
    eb.setIterationCount(ITERATION_COUNT);
    try {//w w  w.j a v a2  s.c o m
        encryptor = eb.build(password);
    } catch (OperatorCreationException ex) {
        throw new P11TokenException(ex.getMessage(), ex);
    }

    JcePKCSPBEInputDecryptorProviderBuilder db = new JcePKCSPBEInputDecryptorProviderBuilder();
    decryptorProvider = db.build(password);
}