Uses of Class
org.bouncycastle.crypto.asymmetric.AsymmetricKeyPair
-
Packages that use AsymmetricKeyPair Package Description org.bouncycastle.crypto Lower level cryptography API that supports the JCA/JCE provider as well as allowing access to more primitive functionality.org.bouncycastle.crypto.fips Classes for FIPS approved mode algorithmsorg.bouncycastle.crypto.general Classes for general encryption algorithms and non-FIPS approved variants. -
-
Uses of AsymmetricKeyPair in org.bouncycastle.crypto
Methods in org.bouncycastle.crypto that return AsymmetricKeyPair Modifier and Type Method Description AsymmetricKeyPair<P,S>
AsymmetricKeyPairGenerator. generateKeyPair()
Return a newly generated key pair. -
Uses of AsymmetricKeyPair in org.bouncycastle.crypto.fips
Methods in org.bouncycastle.crypto.fips that return AsymmetricKeyPair Modifier and Type Method Description abstract AsymmetricKeyPair<P,S>
FipsAsymmetricKeyPairGenerator. generateKeyPair()
AsymmetricKeyPair<AsymmetricDHPublicKey,AsymmetricDHPrivateKey>
FipsDH.KeyPairGenerator. generateKeyPair()
Generate a new Diffie-Hellman key pair.AsymmetricKeyPair<AsymmetricDSAPublicKey,AsymmetricDSAPrivateKey>
FipsDSA.KeyPairGenerator. generateKeyPair()
Generate a new DSA key pair.AsymmetricKeyPair<AsymmetricECPublicKey,AsymmetricECPrivateKey>
FipsEC.KeyPairGenerator. generateKeyPair()
Generate a new EC key pair.AsymmetricKeyPair<AsymmetricRSAPublicKey,AsymmetricRSAPrivateKey>
FipsRSA.KeyPairGenerator. generateKeyPair()
Methods in org.bouncycastle.crypto.fips with parameters of type AsymmetricKeyPair Modifier and Type Method Description FipsDH.DHUAgreementParameters
FipsDH.DHUAgreementParametersBuilder. using(AsymmetricKeyPair ephemeralKeyPair, AsymmetricDHPublicKey otherPartyEphemeralKey)
Constructor for DH DHU parameters from an ephemeral public/private key pair.FipsDH.MQVAgreementParameters
FipsDH.MQVAgreementParametersBuilder. using(AsymmetricKeyPair ephemeralKeyPair, AsymmetricDHPublicKey otherPartyEphemeralKey)
Constructor for DH MQV parameters from an ephemeral public/private key pair.FipsEC.DHUAgreementParameters
FipsEC.DHUAgreementParametersBuilder. using(AsymmetricKeyPair ephemeralKeyPair, AsymmetricECPublicKey otherPartyEphemeralKey)
Constructor for EC DHU parameters from an ephemeral public/private key pair.FipsEC.MQVAgreementParameters
FipsEC.MQVAgreementParametersBuilder. using(AsymmetricKeyPair ephemeralKeyPair, AsymmetricECPublicKey otherPartyEphemeralKey)
Constructor for EC MQV parameters from an ephemeral public/private key pair. -
Uses of AsymmetricKeyPair in org.bouncycastle.crypto.general
-