Example usage for org.bouncycastle.bcpg UserIDPacket UserIDPacket

List of usage examples for org.bouncycastle.bcpg UserIDPacket UserIDPacket

Introduction

In this page you can find the example usage for org.bouncycastle.bcpg UserIDPacket UserIDPacket.

Prototype

public UserIDPacket(byte[] rawID) 

Source Link

Usage

From source file:org.sufficientlysecure.keychain.support.KeyringBuilder.java

License:Open Source License

private static UserIDPacket createUserId(String userId) {
    return new UserIDPacket(userId);
}