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

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

Introduction

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

Prototype

public InputDecryptorProvider build(final char[] password) 

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 {// ww w .ja v  a  2  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);
}