Java 类org.bouncycastle.asn1.cms.KEKIdentifier 实例源码

项目:ipack    文件:KEKRecipientInformation.java   
KEKRecipientInformation(
    KEKRecipientInfo        info,
    AlgorithmIdentifier     messageAlgorithm,
    CMSSecureReadable       secureReadable,
    AuthAttributesProvider  additionalData)
{
    super(info.getKeyEncryptionAlgorithm(), messageAlgorithm, secureReadable, additionalData);

    this.info = info;

    KEKIdentifier kekId = info.getKekid();

    this.rid = new KEKRecipientId(kekId.getKeyIdentifier().getOctets());
}
项目:gwt-crypto    文件:KEKRecipientInformation.java   
KEKRecipientInformation(
    KEKRecipientInfo        info,
    AlgorithmIdentifier     messageAlgorithm,
    CMSSecureReadable       secureReadable,
    AuthAttributesProvider  additionalData)
{
    super(info.getKeyEncryptionAlgorithm(), messageAlgorithm, secureReadable, additionalData);

    this.info = info;

    KEKIdentifier kekId = info.getKekid();

    this.rid = new KEKRecipientId(kekId.getKeyIdentifier().getOctets());
}
项目:Aki-SSL    文件:KEKRecipientInformation.java   
KEKRecipientInformation(
    KEKRecipientInfo        info,
    AlgorithmIdentifier     messageAlgorithm,
    CMSSecureReadable       secureReadable,
    AuthAttributesProvider  additionalData)
{
    super(info.getKeyEncryptionAlgorithm(), messageAlgorithm, secureReadable, additionalData);

    this.info = info;

    KEKIdentifier kekId = info.getKekid();

    this.rid = new KEKRecipientId(kekId.getKeyIdentifier().getOctets());
}
项目:irma_future_id    文件:KEKRecipientInformation.java   
KEKRecipientInformation(
    KEKRecipientInfo        info,
    AlgorithmIdentifier     messageAlgorithm,
    CMSSecureReadable       secureReadable,
    AuthAttributesProvider  additionalData)
{
    super(info.getKeyEncryptionAlgorithm(), messageAlgorithm, secureReadable, additionalData);

    this.info = info;

    KEKIdentifier kekId = info.getKekid();

    this.rid = new KEKRecipientId(kekId.getKeyIdentifier().getOctets());
}
项目:irma_future_id    文件:KEKRecipientInformation.java   
KEKRecipientInformation(
    KEKRecipientInfo        info,
    AlgorithmIdentifier     messageAlgorithm,
    CMSSecureReadable       secureReadable,
    AuthAttributesProvider  additionalData)
{
    super(info.getKeyEncryptionAlgorithm(), messageAlgorithm, secureReadable, additionalData);

    this.info = info;

    KEKIdentifier kekId = info.getKekid();

    this.rid = new KEKRecipientId(kekId.getKeyIdentifier().getOctets());
}
项目:bc-java    文件:KEKRecipientInformation.java   
KEKRecipientInformation(
    KEKRecipientInfo        info,
    AlgorithmIdentifier     messageAlgorithm,
    CMSSecureReadable       secureReadable,
    AuthAttributesProvider  additionalData)
{
    super(info.getKeyEncryptionAlgorithm(), messageAlgorithm, secureReadable, additionalData);

    this.info = info;

    KEKIdentifier kekId = info.getKekid();

    this.rid = new KEKRecipientId(kekId.getKeyIdentifier().getOctets());
}
项目:bc-java    文件:KEKRecipientInformation.java   
KEKRecipientInformation(
    KEKRecipientInfo        info,
    AlgorithmIdentifier     messageAlgorithm,
    CMSSecureReadable       secureReadable,
    AuthAttributesProvider  additionalData)
{
    super(info.getKeyEncryptionAlgorithm(), messageAlgorithm, secureReadable, additionalData);

    this.info = info;

    KEKIdentifier kekId = info.getKekid();

    this.rid = new KEKRecipientId(kekId.getKeyIdentifier().getOctets());
}
项目:ipack    文件:KEKRecipientInfoGenerator.java   
protected KEKRecipientInfoGenerator(KEKIdentifier kekIdentifier, SymmetricKeyWrapper wrapper)
{
    this.kekIdentifier = kekIdentifier;
    this.wrapper = wrapper;
}
项目:ipack    文件:BcKEKRecipientInfoGenerator.java   
public BcKEKRecipientInfoGenerator(KEKIdentifier kekIdentifier, BcSymmetricKeyWrapper kekWrapper)
{
    super(kekIdentifier, kekWrapper);
}
项目:ipack    文件:BcKEKRecipientInfoGenerator.java   
public BcKEKRecipientInfoGenerator(byte[] keyIdentifier, BcSymmetricKeyWrapper kekWrapper)
{
    this(new KEKIdentifier(keyIdentifier, null, null), kekWrapper);
}
项目:ipack    文件:JceKEKRecipientInfoGenerator.java   
public JceKEKRecipientInfoGenerator(KEKIdentifier kekIdentifier, SecretKey keyEncryptionKey)
{
    super(kekIdentifier, new JceSymmetricKeyWrapper(keyEncryptionKey));
}
项目:ipack    文件:JceKEKRecipientInfoGenerator.java   
public JceKEKRecipientInfoGenerator(byte[] keyIdentifier, SecretKey keyEncryptionKey)
{
    this(new KEKIdentifier(keyIdentifier, null, null), keyEncryptionKey);
}
项目:gwt-crypto    文件:KEKRecipientInfoGenerator.java   
protected KEKRecipientInfoGenerator(KEKIdentifier kekIdentifier, SymmetricKeyWrapper wrapper)
{
    this.kekIdentifier = kekIdentifier;
    this.wrapper = wrapper;
}
项目:gwt-crypto    文件:BcKEKRecipientInfoGenerator.java   
public BcKEKRecipientInfoGenerator(KEKIdentifier kekIdentifier, BcSymmetricKeyWrapper kekWrapper)
{
    super(kekIdentifier, kekWrapper);
}
项目:gwt-crypto    文件:BcKEKRecipientInfoGenerator.java   
public BcKEKRecipientInfoGenerator(byte[] keyIdentifier, BcSymmetricKeyWrapper kekWrapper)
{
    this(new KEKIdentifier(keyIdentifier, null, null), kekWrapper);
}
项目:Aki-SSL    文件:KEKRecipientInfoGenerator.java   
protected KEKRecipientInfoGenerator(KEKIdentifier kekIdentifier, SymmetricKeyWrapper wrapper)
{
    this.kekIdentifier = kekIdentifier;
    this.wrapper = wrapper;
}
项目:Aki-SSL    文件:BcKEKRecipientInfoGenerator.java   
public BcKEKRecipientInfoGenerator(KEKIdentifier kekIdentifier, BcSymmetricKeyWrapper kekWrapper)
{
    super(kekIdentifier, kekWrapper);
}
项目:Aki-SSL    文件:BcKEKRecipientInfoGenerator.java   
public BcKEKRecipientInfoGenerator(byte[] keyIdentifier, BcSymmetricKeyWrapper kekWrapper)
{
    this(new KEKIdentifier(keyIdentifier, null, null), kekWrapper);
}
项目:Aki-SSL    文件:JceKEKRecipientInfoGenerator.java   
public JceKEKRecipientInfoGenerator(KEKIdentifier kekIdentifier, SecretKey keyEncryptionKey)
{
    super(kekIdentifier, new JceSymmetricKeyWrapper(keyEncryptionKey));
}
项目:Aki-SSL    文件:JceKEKRecipientInfoGenerator.java   
public JceKEKRecipientInfoGenerator(byte[] keyIdentifier, SecretKey keyEncryptionKey)
{
    this(new KEKIdentifier(keyIdentifier, null, null), keyEncryptionKey);
}
项目:irma_future_id    文件:KEKRecipientInfoGenerator.java   
protected KEKRecipientInfoGenerator(KEKIdentifier kekIdentifier, SymmetricKeyWrapper wrapper)
{
    this.kekIdentifier = kekIdentifier;
    this.wrapper = wrapper;
}
项目:irma_future_id    文件:BcKEKRecipientInfoGenerator.java   
public BcKEKRecipientInfoGenerator(KEKIdentifier kekIdentifier, BcSymmetricKeyWrapper kekWrapper)
{
    super(kekIdentifier, kekWrapper);
}
项目:irma_future_id    文件:BcKEKRecipientInfoGenerator.java   
public BcKEKRecipientInfoGenerator(byte[] keyIdentifier, BcSymmetricKeyWrapper kekWrapper)
{
    this(new KEKIdentifier(keyIdentifier, null, null), kekWrapper);
}
项目:irma_future_id    文件:JceKEKRecipientInfoGenerator.java   
public JceKEKRecipientInfoGenerator(KEKIdentifier kekIdentifier, SecretKey keyEncryptionKey)
{
    super(kekIdentifier, new JceSymmetricKeyWrapper(keyEncryptionKey));
}
项目:irma_future_id    文件:JceKEKRecipientInfoGenerator.java   
public JceKEKRecipientInfoGenerator(byte[] keyIdentifier, SecretKey keyEncryptionKey)
{
    this(new KEKIdentifier(keyIdentifier, null, null), keyEncryptionKey);
}
项目:bc-java    文件:KEKRecipientInfoGenerator.java   
protected KEKRecipientInfoGenerator(KEKIdentifier kekIdentifier, SymmetricKeyWrapper wrapper)
{
    this.kekIdentifier = kekIdentifier;
    this.wrapper = wrapper;
}
项目:bc-java    文件:BcKEKRecipientInfoGenerator.java   
public BcKEKRecipientInfoGenerator(KEKIdentifier kekIdentifier, BcSymmetricKeyWrapper kekWrapper)
{
    super(kekIdentifier, kekWrapper);
}
项目:bc-java    文件:BcKEKRecipientInfoGenerator.java   
public BcKEKRecipientInfoGenerator(byte[] keyIdentifier, BcSymmetricKeyWrapper kekWrapper)
{
    this(new KEKIdentifier(keyIdentifier, null, null), kekWrapper);
}
项目:bc-java    文件:JceKEKRecipientInfoGenerator.java   
public JceKEKRecipientInfoGenerator(KEKIdentifier kekIdentifier, SecretKey keyEncryptionKey)
{
    super(kekIdentifier, new JceSymmetricKeyWrapper(keyEncryptionKey));
}
项目:bc-java    文件:JceKEKRecipientInfoGenerator.java   
public JceKEKRecipientInfoGenerator(byte[] keyIdentifier, SecretKey keyEncryptionKey)
{
    this(new KEKIdentifier(keyIdentifier, null, null), keyEncryptionKey);
}
项目:ipack    文件:CMSEnvelopedGenerator.java   
/**
 * add a KEK recipient.
 *
 * @deprecated use the addRecipientGenerator and JceKEKRecipientInfoGenerator
 * @param key the secret key to use for wrapping
 * @param keyIdentifier the byte string that identifies the key
 */
public void addKEKRecipient(
    SecretKey   key,
    byte[]      keyIdentifier)
{
    addKEKRecipient(key, new KEKIdentifier(keyIdentifier, null, null));
}
项目:ipack    文件:CMSEnvelopedGenerator.java   
/**
 * add a KEK recipient.
 *
 * @deprecated use the addRecipientGenerator and JceKEKRecipientInfoGenerator
 * @param key the secret key to use for wrapping
 * @param kekIdentifier a KEKIdentifier structure (identifies the key)
 */
public void addKEKRecipient(
    SecretKey       key,
    KEKIdentifier   kekIdentifier)
{
    oldRecipientInfoGenerators.add(new JceKEKRecipientInfoGenerator(kekIdentifier, key));
}
项目:irma_future_id    文件:CMSEnvelopedGenerator.java   
/**
 * add a KEK recipient.
 *
 * @deprecated use the addRecipientGenerator and JceKEKRecipientInfoGenerator
 * @param key the secret key to use for wrapping
 * @param keyIdentifier the byte string that identifies the key
 */
public void addKEKRecipient(
    SecretKey   key,
    byte[]      keyIdentifier)
{
    addKEKRecipient(key, new KEKIdentifier(keyIdentifier, null, null));
}
项目:irma_future_id    文件:CMSEnvelopedGenerator.java   
/**
 * add a KEK recipient.
 *
 * @deprecated use the addRecipientGenerator and JceKEKRecipientInfoGenerator
 * @param key the secret key to use for wrapping
 * @param kekIdentifier a KEKIdentifier structure (identifies the key)
 */
public void addKEKRecipient(
    SecretKey       key,
    KEKIdentifier   kekIdentifier)
{
    oldRecipientInfoGenerators.add(new JceKEKRecipientInfoGenerator(kekIdentifier, key));
}
项目:irma_future_id    文件:CMSEnvelopedGenerator.java   
/**
 * add a KEK recipient.
 *
 * @deprecated use the addRecipientGenerator and JceKEKRecipientInfoGenerator
 * @param key the secret key to use for wrapping
 * @param keyIdentifier the byte string that identifies the key
 */
public void addKEKRecipient(
    SecretKey   key,
    byte[]      keyIdentifier)
{
    addKEKRecipient(key, new KEKIdentifier(keyIdentifier, null, null));
}
项目:irma_future_id    文件:CMSEnvelopedGenerator.java   
/**
 * add a KEK recipient.
 *
 * @deprecated use the addRecipientGenerator and JceKEKRecipientInfoGenerator
 * @param key the secret key to use for wrapping
 * @param kekIdentifier a KEKIdentifier structure (identifies the key)
 */
public void addKEKRecipient(
    SecretKey       key,
    KEKIdentifier   kekIdentifier)
{
    oldRecipientInfoGenerators.add(new JceKEKRecipientInfoGenerator(kekIdentifier, key));
}
项目:bc-java    文件:CMSEnvelopedGenerator.java   
/**
 * add a KEK recipient.
 *
 * @deprecated use the addRecipientGenerator and JceKEKRecipientInfoGenerator
 * @param key the secret key to use for wrapping
 * @param keyIdentifier the byte string that identifies the key
 */
public void addKEKRecipient(
    SecretKey   key,
    byte[]      keyIdentifier)
{
    addKEKRecipient(key, new KEKIdentifier(keyIdentifier, null, null));
}
项目:bc-java    文件:CMSEnvelopedGenerator.java   
/**
 * add a KEK recipient.
 *
 * @deprecated use the addRecipientGenerator and JceKEKRecipientInfoGenerator
 * @param key the secret key to use for wrapping
 * @param kekIdentifier a KEKIdentifier structure (identifies the key)
 */
public void addKEKRecipient(
    SecretKey       key,
    KEKIdentifier   kekIdentifier)
{
    oldRecipientInfoGenerators.add(new JceKEKRecipientInfoGenerator(kekIdentifier, key));
}
项目:bc-java    文件:CMSEnvelopedGenerator.java   
/**
 * add a KEK recipient.
 *
 * @deprecated use the addRecipientGenerator and JceKEKRecipientInfoGenerator
 * @param key the secret key to use for wrapping
 * @param keyIdentifier the byte string that identifies the key
 */
public void addKEKRecipient(
    SecretKey   key,
    byte[]      keyIdentifier)
{
    addKEKRecipient(key, new KEKIdentifier(keyIdentifier, null, null));
}
项目:bc-java    文件:CMSEnvelopedGenerator.java   
/**
 * add a KEK recipient.
 *
 * @deprecated use the addRecipientGenerator and JceKEKRecipientInfoGenerator
 * @param key the secret key to use for wrapping
 * @param kekIdentifier a KEKIdentifier structure (identifies the key)
 */
public void addKEKRecipient(
    SecretKey       key,
    KEKIdentifier   kekIdentifier)
{
    oldRecipientInfoGenerators.add(new JceKEKRecipientInfoGenerator(kekIdentifier, key));
}