Example usage for org.bouncycastle.cms SignerId SignerId

List of usage examples for org.bouncycastle.cms SignerId SignerId

Introduction

In this page you can find the example usage for org.bouncycastle.cms SignerId SignerId.

Prototype

public SignerId(byte[] subjectKeyId) 

Source Link

Document

Construct a signer ID with the value of a public key's subjectKeyId.

Usage

From source file:org.xwiki.crypto.pkix.internal.BcStoreX509CertificateProvider.java

License:Open Source License

@Override
public CertifiedPublicKey getCertificate(byte[] keyIdentifier) {
    return BcUtils.convertCertificate(this.factory, getCertificate(new SignerId(keyIdentifier)));
}