- java.lang.Object
-
- java.security.spec.RSAOtherPrimeInfo
-
public class RSAOtherPrimeInfo extends Object
This class represents the triplet (prime, exponent, and coefficient) inside RSA's OtherPrimeInfo structure, as defined in the PKCS#1 v2.1. The ASN.1 syntax of RSA's OtherPrimeInfo is as follows:OtherPrimeInfo ::= SEQUENCE { prime INTEGER, exponent INTEGER, coefficient INTEGER }
- Since:
- 1.4
- See Also:
RSAPrivateCrtKeySpec
,RSAMultiPrimePrivateCrtKey
-
-
Constructor Summary
Constructors Constructor and Description RSAOtherPrimeInfo(BigInteger prime, BigInteger primeExponent, BigInteger crtCoefficient)
Creates a newRSAOtherPrimeInfo
given the prime, primeExponent, and crtCoefficient as defined in PKCS#1.
-
Method Summary
Methods Modifier and Type Method and Description BigInteger
getCrtCoefficient()
Returns the prime's crtCoefficient.BigInteger
getExponent()
Returns the prime's exponent.BigInteger
getPrime()
Returns the prime.
-
-
-
Constructor Detail
-
RSAOtherPrimeInfo
public RSAOtherPrimeInfo(BigInteger prime, BigInteger primeExponent, BigInteger crtCoefficient)
Creates a newRSAOtherPrimeInfo
given the prime, primeExponent, and crtCoefficient as defined in PKCS#1.- Parameters:
prime
- the prime factor of n.primeExponent
- the exponent.crtCoefficient
- the Chinese Remainder Theorem coefficient.- Throws:
NullPointerException
- if any of the parameters, i.e.prime
,primeExponent
,crtCoefficient
, is null.
-
-
Method Detail
-
getPrime
public final BigInteger getPrime()
Returns the prime.- Returns:
- the prime.
-
getExponent
public final BigInteger getExponent()
Returns the prime's exponent.- Returns:
- the primeExponent.
-
getCrtCoefficient
public final BigInteger getCrtCoefficient()
Returns the prime's crtCoefficient.- Returns:
- the crtCoefficient.
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
05/11/2024 20:11:32 Cette version de la page est en cache (à la date du 05/11/2024 20:11:32) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 31/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/security/spec/RSAOtherPrimeInfo.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.