Package org.bouncycastle.bcpg.sig

Examples of org.bouncycastle.bcpg.sig.SignerUserID


       case KEY_FLAGS:
               return new KeyFlags(isCritical, data);
       case PRIMARY_USER_ID:
               return new PrimaryUserID(isCritical, data);
       case SIGNER_USER_ID:
           return new SignerUserID(isCritical, data);
       }

       return new SignatureSubpacket(type, isCritical, data);
    }
View Full Code Here


        if (userID == null)
        {
            throw new IllegalArgumentException("attempt to set null SignerUserID");
        }
       
        list.add(new SignerUserID(isCritical, userID));
    }
View Full Code Here

        case KEY_FLAGS:
            return new KeyFlags(isCritical, data);
        case PRIMARY_USER_ID:
            return new PrimaryUserID(isCritical, data);
        case SIGNER_USER_ID:
            return new SignerUserID(isCritical, data);
        case NOTATION_DATA:
            return new NotationData(isCritical, data);
        }

        return new SignatureSubpacket(type, isCritical, data);
View Full Code Here

        if (userID == null)
        {
            throw new IllegalArgumentException("attempt to set null SignerUserID");
        }

        list.add(new SignerUserID(isCritical, userID));
    }
View Full Code Here

        if (userID == null)
        {
            throw new IllegalArgumentException("attempt to set null SignerUserID");
        }
       
        list.add(new SignerUserID(isCritical, userID));
    }
View Full Code Here

TOP

Related Classes of org.bouncycastle.bcpg.sig.SignerUserID

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.