Home
last modified time | relevance | path

Searched refs:PSS (Results 1 – 25 of 62) sorted by relevance

123

/external/boringssl/src/crypto/evp/
Devp_tests.txt319 # RSA-PSS tests.
323 RSAPadding = PSS
331 RSAPadding = PSS
339 RSAPadding = PSS
350 RSAPadding = PSS
358 RSAPadding = PSS
366 RSAPadding = PSS
375 RSAPadding = PSS
384 RSAPadding = PSS
393 RSAPadding = PSS
[all …]
/external/python/cryptography/tests/hazmat/primitives/
Dtest_rsa.py109 padding.PSS(
111 salt_length=padding.PSS.MAX_LENGTH
396 padding.PSS(
398 salt_length=padding.PSS.MAX_LENGTH
431 padding.PSS(
433 salt_length=padding.PSS.MAX_LENGTH
444 padding.PSS(
446 salt_length=padding.PSS.MAX_LENGTH
459 pss = padding.PSS(
461 salt_length=padding.PSS.MAX_LENGTH
[all …]
/external/python/cryptography/vectors/cryptography_vectors/asymmetric/RSA/pkcs-1v2-1d2-vec/
Dreadme.txt5 This directory contains test vectors for RSA-OAEP and RSA-PSS
16 pss-vect.txt Test vectors for RSA-PSS signing.
17 pss-int.txt Intermediate values for RSA-PSS signing.
Dpss-vect.txt1 Test vectors for RSA-PSS
4 This file contains test vectors for the RSA-PSS signature
8 1 and 256 octets have been RSA-PSS signed via a random salt
102 # RSA-PSS signing of 6 random messages with random salts
105 # PSS Example 1.1
139 # PSS Example 1.2
163 # PSS Example 1.3
198 # PSS Example 1.4
219 # PSS Example 1.5
249 # PSS Example 1.6
[all …]
Dpss-int.txt1 RSA-PSS signing with intermediate values
4 This file illustrates the process of signing a message with RSA-PSS
64 # RSA-PSS signing of a message with a random salt
/external/python/cryptography/docs/hazmat/primitives/asymmetric/
Dutils.rst73 ... padding.PSS(
75 ... salt_length=padding.PSS.MAX_LENGTH
83 ... padding.PSS(
85 ... salt_length=padding.PSS.MAX_LENGTH
Drsa.rst149 ... padding.PSS(
151 ... salt_length=padding.PSS.MAX_LENGTH
157 :class:`~cryptography.hazmat.primitives.asymmetric.padding.PSS` and
158 :class:`~cryptography.hazmat.primitives.asymmetric.padding.PKCS1v15`. ``PSS``
176 ... padding.PSS(
178 ... salt_length=padding.PSS.MAX_LENGTH
203 ... padding.PSS(
205 ... salt_length=padding.PSS.MAX_LENGTH
227 ... padding.PSS(
229 ... salt_length=padding.PSS.MAX_LENGTH
[all …]
/external/conscrypt/
DCAPABILITIES.md153 * `PSS`
211 * `SHA1withRSA/PSS`
214 * `SHA224withRSA/PSS`
217 * `SHA256withRSA/PSS`
220 * `SHA384withRSA/PSS`
223 * `SHA512withRSA/PSS`
/external/rust/crates/ring/src/rsa/
Dpadding.rs218 pub struct PSS { struct
222 impl crate::sealed::Sealed for PSS {} argument
228 impl Padding for PSS { implementation
234 impl RsaEncoding for PSS { implementation
306 impl Verification for PSS { implementation
491 pub static $PADDING_ALGORITHM: PSS = PSS {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
DKeyPairGeneratorSpi.java93 public static class PSS class in KeyPairGeneratorSpi
96 public PSS() in PSS() method in KeyPairGeneratorSpi.PSS
DAlgorithmParametersSpi.java165 public static class PSS class in AlgorithmParametersSpi
/external/python/cryptography/tests/wycheproof/
Dtest_rsa.py109 padding.PSS(
120 padding.PSS(
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/jcajce/provider/asymmetric/rsa/
DKeyPairGeneratorSpi.java100 public static class PSS class in KeyPairGeneratorSpi
103 public PSS() in PSS() method in KeyPairGeneratorSpi.PSS
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/asymmetric/rsa/
DKeyPairGeneratorSpi.java100 public static class PSS class in KeyPairGeneratorSpi
103 public PSS() in PSS() method in KeyPairGeneratorSpi.PSS
DAlgorithmParametersSpi.java175 public static class PSS class in AlgorithmParametersSpi
/external/python/cryptography/vectors/cryptography_vectors/asymmetric/RSA/FIPS_186-2/
DReadme.txt9 4. The file SigGenPSS_186-2.txt contains values for RSA PKCS#1 RSASSA-PSS signature generation wit…
/external/jemalloc_new/
DAndroid.bp85 // is, the higher amount of PSS consumed. If this number is set too low
89 // is, the higher amount of PSS consumed. If this number is set too low
95 // Default some parameters to small values to minimize PSS.
105 // Only enable the tcache on non-svelte configurations, to save PSS.
/external/python/cryptography/src/cryptography/hazmat/primitives/asymmetric/
Dpadding.py32 class PSS(object): class
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Drsa.py22 AsymmetricPadding, MGF1, OAEP, PKCS1v15, PSS, calculate_max_pss_salt_length
32 if salt is MGF1.MAX_LENGTH or salt is PSS.MAX_LENGTH:
165 elif isinstance(padding, PSS):
207 if isinstance(padding, PSS):
/external/python/cryptography/tests/hazmat/backends/
Dtest_openssl.py322 padding.PSS(mgf=padding.MGF1(DummyHashAlgorithm()), salt_length=0)
333 padding.PSS(mgf=padding.MGF1(hashes.SHA1()), salt_length=0)
376 padding.PSS(mgf=DummyMGF(), salt_length=0)
/external/rust/crates/ring/tests/
Drsa_pss_sign_tests.txt1 # RSA PSS Test Vectors for FIPS 186-4 from SigGenPSS_186-3.txt in
/external/scapy/scapy/layers/tls/crypto/
Dpkcs1.py125 return padding.PSS(mgf=mgf(h), salt_length=h.digest_size)
/external/boringssl/src/third_party/wycheproof_testvectors/
Drsa_signature_2048_sha512_test.txt1419 # RSASSA-PSS signature
1425 # RSASSA-PSS signature
1431 # RSASSA-PSS signature
1437 # RSASSA-PSS signature
Drsa_signature_3072_sha384_test.txt1419 # RSASSA-PSS signature
1425 # RSASSA-PSS signature
1431 # RSASSA-PSS signature
1437 # RSASSA-PSS signature
Drsa_signature_4096_sha384_test.txt1419 # RSASSA-PSS signature
1425 # RSASSA-PSS signature
1431 # RSASSA-PSS signature
1437 # RSASSA-PSS signature

123