Home
last modified time | relevance | path

Searched refs:PREFIX (Results 1 – 25 of 603) sorted by relevance

12345678910>>...25

/external/curl/tests/certs/scripts/
Dgenserv.sh27 PREFIX=$1
28 if [ ".$PREFIX" = . ] ; then
32 if [ ! -f $PREFIX-sv.prm ] ; then
33 echo No configuration file $PREFIX-sv.prm
64 echo SERIAL=$SERIAL PREFIX=$PREFIX CAPREFIX=$CAPREFIX DURATION=$DURATION KEYSIZE=$KEYSIZE
67 echo "openssl dhparam -2 -out $PREFIX-sv.dhp $KEYSIZE"
68 $OPENSSL dhparam -2 -out $PREFIX-sv.dhp $KEYSIZE
72 …echo "openssl req -config $PREFIX-sv.prm -newkey rsa:$KEYSIZE -keyout $PREFIX-sv.key -out $PREFIX-…
73 …$OPENSSL req -config $PREFIX-sv.prm -newkey rsa:$KEYSIZE -keyout $PREFIX-sv.key -out $PREFIX-sv.cs…
76 echo "openssl rsa -in $PREFIX-sv.key -out $PREFIX-sv.key"
[all …]
Dgenroot.sh23 PREFIX=$1
24 if [ ".$PREFIX" = . ] ; then
28 if [ ! -f $PREFIX-ca.prm ] ; then
29 echo No configuration file $PREFIX-ca.prm
43 echo SERIAL=$SERIAL PREFIX=$PREFIX DURATION=$DURATION KEYSIZE=$KEYSIZE
45 echo "openssl genrsa -out $PREFIX-ca.key $KEYSIZE -passout XXX"
46 openssl genrsa -out $PREFIX-ca.key $KEYSIZE -passout pass:secret
48 echo "openssl req -config $PREFIX-ca.prm -new -key $PREFIX-ca.key -out $PREFIX-ca.csr"
49 $OPENSSL req -config $PREFIX-ca.prm -new -key $PREFIX-ca.key -out $PREFIX-ca.csr -passin pass:secret
51 … -set_serial $SERIAL -extfile $PREFIX-ca.prm -days $DURATION -req -signkey $PREFIX-ca.key -in $PRE…
[all …]
/external/curl/packages/vms/
Dcurlmsg.sdl21 /* "THE COMBINED LENGTH OF THE PREFIX AND THE MESSAGE SYMBOL NAME CANNOT
22 /* EXCEED 31 CHARACTERS." WITH A PREFIX OF FIVE THAT LEAVES US WITH 26
28 "FACILITY" EQUALS 3841 PREFIX "CURL" TAG ""
29 ,"OK" EQUALS %X0F018009 PREFIX "CURL" TAG ""
30 ,"UNSUPPORTED_PROTOCOL" EQUALS %X0F018012 PREFIX "CURL" TAG ""
31 ,"FAILED_INIT" EQUALS %X0F01801A PREFIX "CURL" TAG ""
32 ,"URL_MALFORMAT" EQUALS %X0F018022 PREFIX "CURL" TAG ""
33 ,"OBSOLETE4" EQUALS %X0F01802A PREFIX "CURL" TAG ""
34 ,"COULDNT_RESOLVE_PROXY" EQUALS %X0F018032 PREFIX "CURL" TAG ""
35 ,"COULDNT_RESOLVE_HOST" EQUALS %X0F01803A PREFIX "CURL" TAG ""
[all …]
/external/zstd/lib/common/
Derror_private.c24 case PREFIX(no_error): return "No error detected"; in ERR_getErrorString()
25 case PREFIX(GENERIC): return "Error (generic)"; in ERR_getErrorString()
26 case PREFIX(prefix_unknown): return "Unknown frame descriptor"; in ERR_getErrorString()
27 case PREFIX(version_unsupported): return "Version not supported"; in ERR_getErrorString()
28 case PREFIX(frameParameter_unsupported): return "Unsupported frame parameter"; in ERR_getErrorString()
29 … case PREFIX(frameParameter_windowTooLarge): return "Frame requires too much memory for decoding"; in ERR_getErrorString()
30 case PREFIX(corruption_detected): return "Corrupted block detected"; in ERR_getErrorString()
31 case PREFIX(checksum_wrong): return "Restored data doesn't match checksum"; in ERR_getErrorString()
32 case PREFIX(parameter_unsupported): return "Unsupported parameter"; in ERR_getErrorString()
33 case PREFIX(parameter_outOfBound): return "Parameter is out of bound"; in ERR_getErrorString()
[all …]
/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLProvider.java37 private static final String PREFIX = OpenSSLProvider.class.getPackage().getName() + "."; field in OpenSSLProvider
66 String classOpenSSLContextImpl = PREFIX + "OpenSSLContextImpl"; in OpenSSLProvider()
88 put("SSLContext.Default", PREFIX + "DefaultSSLContextImpl" + defaultSSLContextSuffix); in OpenSSLProvider()
96 put("AlgorithmParameters.AES", PREFIX + "IvParameters$AES"); in OpenSSLProvider()
101 put("AlgorithmParameters.ChaCha20", PREFIX + "IvParameters$ChaCha20"); in OpenSSLProvider()
103 put("AlgorithmParameters.DESEDE", PREFIX + "IvParameters$DESEDE"); in OpenSSLProvider()
107 put("AlgorithmParameters.GCM", PREFIX + "GCMParameters"); in OpenSSLProvider()
111 put("AlgorithmParameters.OAEP", PREFIX + "OAEPParameters"); in OpenSSLProvider()
112 put("AlgorithmParameters.PSS", PREFIX + "PSSParameters"); in OpenSSLProvider()
113 put("AlgorithmParameters.EC", PREFIX + "ECParameters"); in OpenSSLProvider()
[all …]
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DOpenSSLProvider.java41 private static final String PREFIX = OpenSSLProvider.class.getPackage().getName() + "."; field in OpenSSLProvider
73 String classOpenSSLContextImpl = PREFIX + "OpenSSLContextImpl"; in OpenSSLProvider()
95 put("SSLContext.Default", PREFIX + "DefaultSSLContextImpl" + defaultSSLContextSuffix); in OpenSSLProvider()
103 put("AlgorithmParameters.AES", PREFIX + "IvParameters$AES"); in OpenSSLProvider()
108 put("AlgorithmParameters.ChaCha20", PREFIX + "IvParameters$ChaCha20"); in OpenSSLProvider()
110 put("AlgorithmParameters.DESEDE", PREFIX + "IvParameters$DESEDE"); in OpenSSLProvider()
114 put("AlgorithmParameters.GCM", PREFIX + "GCMParameters"); in OpenSSLProvider()
118 put("AlgorithmParameters.OAEP", PREFIX + "OAEPParameters"); in OpenSSLProvider()
119 put("AlgorithmParameters.PSS", PREFIX + "PSSParameters"); in OpenSSLProvider()
120 put("AlgorithmParameters.EC", PREFIX + "ECParameters"); in OpenSSLProvider()
[all …]
/external/rust/crates/libz-sys/src/zlib-ng/test/
Dexample.c62 err = PREFIX(compress)(compr, &comprLen, (const unsigned char*)hello, (z_size_t)len); in test_compress()
67 err = PREFIX(uncompress)(uncompr, &uncomprLen, compr, comprLen); in test_compress()
93 file = PREFIX(gzopen)(fname, "wb"); in test_gzio()
99 PREFIX(gzputc)(file, 'h'); in test_gzio()
100 if (PREFIX(gzputs)(file, "ello") != 4) { in test_gzio()
101 fprintf(stderr, "gzputs err: %s\n", PREFIX(gzerror)(file, &err)); in test_gzio()
104 if (PREFIX(gzprintf)(file, ", %s!", "hello") != 8) { in test_gzio()
105 fprintf(stderr, "gzprintf err: %s\n", PREFIX(gzerror)(file, &err)); in test_gzio()
109 if (PREFIX(gzseek)(file, 1L, SEEK_CUR) < 0) in test_gzio()
111 fprintf(stderr, "gzseek error, gztell=%ld\n", (long)PREFIX(gztell)(file)); in test_gzio()
[all …]
Dinfcover.c291 PREFIX(gz_header) head; in inf()
296 ret = PREFIX(inflateInit2)(&strm, win); in inf()
309 ret = PREFIX(inflateGetHeader)(&strm, &head); in inf()
321 ret = PREFIX(inflate)(&strm, Z_NO_FLUSH); in inf()
326 ret = PREFIX(inflateSetDictionary)(&strm, in, 1); in inf()
329 ret = PREFIX(inflateSetDictionary)(&strm, out, 0); in inf()
333 ret = PREFIX(inflateSetDictionary)(&strm, out, 0); in inf()
335 ret = PREFIX(inflate)(&strm, Z_NO_FLUSH); in inf()
338 ret = PREFIX(inflateCopy)(&copy, &strm); in inf()
340 ret = PREFIX(inflateEnd)(&copy); assert(ret == Z_OK); in inf()
[all …]
/external/elfutils/lib/
Dfixedsizehash.h68 #ifndef PREFIX
69 # define PREFIX macro
74 struct CONCAT(PREFIX,fshash) in CONCAT() argument
77 struct CONCAT(PREFIX,fshashent) in CONCAT()
92 CLASS struct CONCAT(PREFIX,fshash) * in CONCAT() argument
93 CONCAT(PREFIX,fshash_init) (size_t nelems) in CONCAT()
95 struct CONCAT(PREFIX,fshash) *result; in CONCAT()
110 result = (struct CONCAT(PREFIX,fshash) *) in CONCAT()
111 xcalloc (sizeof (struct CONCAT(PREFIX,fshash)) in CONCAT()
112 + (nelems + 1) * sizeof (struct CONCAT(PREFIX,fshashent)), 1); in CONCAT()
[all …]
/external/bzip2/
DMakefile27 PREFIX=/usr/local macro
73 if ( test ! -d $(PREFIX)/bin ) ; then mkdir -p $(PREFIX)/bin ; fi
74 if ( test ! -d $(PREFIX)/lib ) ; then mkdir -p $(PREFIX)/lib ; fi
75 if ( test ! -d $(PREFIX)/man ) ; then mkdir -p $(PREFIX)/man ; fi
76 if ( test ! -d $(PREFIX)/man/man1 ) ; then mkdir -p $(PREFIX)/man/man1 ; fi
77 if ( test ! -d $(PREFIX)/include ) ; then mkdir -p $(PREFIX)/include ; fi
78 cp -f bzip2 $(PREFIX)/bin/bzip2
79 cp -f bzip2 $(PREFIX)/bin/bunzip2
80 cp -f bzip2 $(PREFIX)/bin/bzcat
81 cp -f bzip2recover $(PREFIX)/bin/bzip2recover
[all …]
/external/rust/crates/libz-sys/src/zlib-ng/test/fuzz/
Dchecksum_fuzzer.c17 uint32_t crc0 = PREFIX(crc32)(0L, NULL, 0); in LLVMFuzzerTestOneInput()
20 uint32_t adler0 = PREFIX(adler32)(0L, NULL, 0); in LLVMFuzzerTestOneInput()
39 PREFIX(crc32_combine_gen)(op, buffSize); in LLVMFuzzerTestOneInput()
41 uint32_t crc3 = PREFIX(crc32_z)(crc0, data + offset, buffSize); in LLVMFuzzerTestOneInput()
42 uint32_t crc4 = PREFIX(crc32_combine_op)(crc1, crc3, op); in LLVMFuzzerTestOneInput()
43 crc1 = PREFIX(crc32_z)(crc1, data + offset, buffSize); in LLVMFuzzerTestOneInput()
48 crc1 = PREFIX(crc32_z)(crc1, data + offset, dataLen % buffSize); in LLVMFuzzerTestOneInput()
50 crc2 = PREFIX(crc32_z)(crc2, data, dataLen); in LLVMFuzzerTestOneInput()
55 combine1 = PREFIX(crc32_combine)(crc1, crc2, (z_off_t)dataLen); in LLVMFuzzerTestOneInput()
56 combine2 = PREFIX(crc32_combine)(crc1, crc1, (z_off_t)dataLen); in LLVMFuzzerTestOneInput()
[all …]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
DTag.java32 public static final String PREFIX = "tag:yaml.org,2002:"; field in Tag
33 public static final Tag YAML = new Tag(PREFIX + "yaml");
34 public static final Tag MERGE = new Tag(PREFIX + "merge");
35 public static final Tag SET = new Tag(PREFIX + "set");
36 public static final Tag PAIRS = new Tag(PREFIX + "pairs");
37 public static final Tag OMAP = new Tag(PREFIX + "omap");
38 public static final Tag BINARY = new Tag(PREFIX + "binary");
39 public static final Tag INT = new Tag(PREFIX + "int");
40 public static final Tag FLOAT = new Tag(PREFIX + "float");
41 public static final Tag TIMESTAMP = new Tag(PREFIX + "timestamp");
[all …]
/external/sonic/
DMakefile17 PREFIX=/usr macro
18 LIBDIR=$(PREFIX)/lib
43 install -d $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/include $(DESTDIR)$(PREFIX)/lib
44 install sonic $(DESTDIR)$(PREFIX)/bin
45 install sonic.h $(DESTDIR)$(PREFIX)/include
46 install libsonic.so.$(LIB_TAG) $(DESTDIR)$(PREFIX)/lib
48 ln -sf libsonic.so.$(LIB_TAG) $(DESTDIR)$(PREFIX)/lib/libsonic.so
49 ln -sf libsonic.so.$(LIB_TAG) $(DESTDIR)$(PREFIX)/lib/libsonic.so.0
52 rm -f $(DESTDIR)$(PREFIX)/bin/sonic
53 rm -f $(DESTDIR)$(PREFIX)/include/sonic.h
[all …]
/external/boringssl/src/crypto/fipsmodule/aes/asm/
Dvpaes-x86_64.pl71 $PREFIX="vpaes";
869 .globl ${PREFIX}_set_encrypt_key
870 .type ${PREFIX}_set_encrypt_key,\@function,3
872 ${PREFIX}_set_encrypt_key:
922 .size ${PREFIX}_set_encrypt_key,.-${PREFIX}_set_encrypt_key
924 .globl ${PREFIX}_set_decrypt_key
925 .type ${PREFIX}_set_decrypt_key,\@function,3
927 ${PREFIX}_set_decrypt_key:
977 .size ${PREFIX}_set_decrypt_key,.-${PREFIX}_set_decrypt_key
979 .globl ${PREFIX}_encrypt
[all …]
/external/brotli/
Dconfigure-cmake31 PREFIX=/usr/local
109 --prefix=PREFIX install architecture-independent files in PREFIX
110 [$PREFIX]
111 --bindir=DIR user executables [PREFIX/bin]
112 --sbindir=DIR system admin executables [PREFIX/sbin]
113 --libexecdir=DIR program executables [PREFIX/libexec]
114 --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
115 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
116 --localstatedir=DIR modifiable single-machine data [PREFIX/var]
117 --libdir=DIR object code libraries [PREFIX/lib]
[all …]
/external/cldr/tools/cldr-rdf/src/main/resources/org/unicode/cldr/rdf/sparql/
Dwikidata-entityToCode.sparql2 PREFIX wd: <http://www.wikidata.org/entity/>
3 PREFIX wds: <http://www.wikidata.org/entity/statement/>
4 PREFIX wdv: <http://www.wikidata.org/value/>
5 PREFIX wdt: <http://www.wikidata.org/prop/direct/>
6 PREFIX wikibase: <http://wikiba.se/ontology#>
7 PREFIX p: <http://www.wikidata.org/prop/>
8 PREFIX ps: <http://www.wikidata.org/prop/statement/>
9 PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
10 PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
11 PREFIX bd: <http://www.bigdata.com/rdf#>
Dwikidata-entityToLabel.sparql2 PREFIX wd: <http://www.wikidata.org/entity/>
3 PREFIX wds: <http://www.wikidata.org/entity/statement/>
4 PREFIX wdv: <http://www.wikidata.org/value/>
5 PREFIX wdt: <http://www.wikidata.org/prop/direct/>
6 PREFIX wikibase: <http://wikiba.se/ontology#>
7 PREFIX p: <http://www.wikidata.org/prop/>
8 PREFIX ps: <http://www.wikidata.org/prop/statement/>
9 PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
10 PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
11 PREFIX bd: <http://www.bigdata.com/rdf#>
Dwikidata-childToParent.sparql3 PREFIX wd: <http://www.wikidata.org/entity/>
4 PREFIX wds: <http://www.wikidata.org/entity/statement/>
5 PREFIX wdv: <http://www.wikidata.org/value/>
6 PREFIX wdt: <http://www.wikidata.org/prop/direct/>
7 PREFIX wikibase: <http://wikiba.se/ontology#>
8 PREFIX p: <http://www.wikidata.org/prop/>
9 PREFIX ps: <http://www.wikidata.org/prop/statement/>
10 PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
11 PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
12 PREFIX bd: <http://www.bigdata.com/rdf#>
/external/toybox/scripts/
Dinstall.sh7 [ -z "$PREFIX" ] && PREFIX="$PWD/install"
44 mkdir -p "${PREFIX}/${LONG_PATH}" &&
45 rm -f "${PREFIX}/${LONG_PATH}/toybox" &&
46 cp toybox"${TARGET:+-$TARGET}" ${PREFIX}/${LONG_PATH} || exit 1
48 rm -f "${PREFIX}/${LONG_PATH}/toybox" 2>/dev/null
50 cd "$PREFIX" || exit 1
125 FALLBACK="$PREFIX"
135 FALLBACK="$PREFIX/fallback-$X"
138 if [ ! -f "$PREFIX/$i" ]
/external/libpng/scripts/
Dmakefile.openbsd9 PREFIX?= /usr/local
10 LIBDIR= ${PREFIX}/lib
11 MANDIR= ${PREFIX}/man/cat
53 if [ ! -d ${DESTDIR}${PREFIX}/include/libpng ]; then \
54 ${INSTALL} -d -o root -g wheel ${DESTDIR}${PREFIX}/include; \
68 if [ ! -d ${DESTDIR}${PREFIX}/share/doc/png ]; then \
69 ${INSTALL} -d -o root -g wheel ${DESTDIR}${PREFIX}/share/doc/png; \
75 @rm -f ${DESTDIR}${PREFIX}/include/png.h
76 @rm -f ${DESTDIR}${PREFIX}/include/pngconf.h
77 @rm -f ${DESTDIR}${PREFIX}/include/pnglibconf.h
[all …]
/external/tcpdump/
Dbuild.sh25 if [ -z "$PREFIX" ]; then
26 PREFIX=$(mktemp -d -t tcpdump_build_XXXXXXXX)
27 echo "PREFIX set to '$PREFIX'"
30 export TCPDUMP_BIN="$PREFIX/bin/tcpdump"
55 ./configure --with-crypto="$CRYPTO" --enable-smb="$SMB" --prefix="$PREFIX"
56 export LD_LIBRARY_PATH="$PREFIX/lib"
58 … ./configure --disable-local-libpcap --with-crypto="$CRYPTO" --enable-smb="$SMB" --prefix="$PREFIX"
68 …YPTO="$CRYPTO" -DENABLE_SMB="$SMB" -DCMAKE_PREFIX_PATH="$PREFIX" -DCMAKE_INSTALL_PREFIX="$PREFIX" …
69 export LD_LIBRARY_PATH="$PREFIX/lib"
71 cmake -DWITH_CRYPTO="$CRYPTO" -DENABLE_SMB="$SMB" -DCMAKE_INSTALL_PREFIX="$PREFIX" ..
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
DPBEPBKDF2.java558 private static final String PREFIX = PBEPBKDF2.class.getName(); field in PBEPBKDF2.Mappings
600 … provider.addAlgorithm("SecretKeyFactory.PBKDF2WithHmacSHA1", PREFIX + "$PBKDF2WithHmacSHA1UTF8"); in configure()
601 …provider.addAlgorithm("SecretKeyFactory.PBKDF2WithHmacSHA224", PREFIX + "$PBKDF2WithHmacSHA224UTF8… in configure()
602 …provider.addAlgorithm("SecretKeyFactory.PBKDF2WithHmacSHA256", PREFIX + "$PBKDF2WithHmacSHA256UTF8… in configure()
603 …provider.addAlgorithm("SecretKeyFactory.PBKDF2WithHmacSHA384", PREFIX + "$PBKDF2WithHmacSHA384UTF8… in configure()
604 …provider.addAlgorithm("SecretKeyFactory.PBKDF2WithHmacSHA512", PREFIX + "$PBKDF2WithHmacSHA512UTF8… in configure()
605 …provider.addAlgorithm("SecretKeyFactory.PBEWithHmacSHA1AndAES_128", PREFIX + "$PBEWithHmacSHA1AndA… in configure()
606 …provider.addAlgorithm("SecretKeyFactory.PBEWithHmacSHA224AndAES_128", PREFIX + "$PBEWithHmacSHA224… in configure()
607 …provider.addAlgorithm("SecretKeyFactory.PBEWithHmacSHA256AndAES_128", PREFIX + "$PBEWithHmacSHA256… in configure()
608 …provider.addAlgorithm("SecretKeyFactory.PBEWithHmacSHA384AndAES_128", PREFIX + "$PBEWithHmacSHA384… in configure()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/
DDSA.java12 private static final String PREFIX = "org.bouncycastle.jcajce.provider.asymmetric" + ".dsa."; field in DSA
23 provider.addAlgorithm("AlgorithmParameters.DSA", PREFIX + "AlgorithmParametersSpi"); in configure()
25 …provider.addAlgorithm("AlgorithmParameterGenerator.DSA", PREFIX + "AlgorithmParameterGeneratorSpi"… in configure()
27 provider.addAlgorithm("KeyPairGenerator.DSA", PREFIX + "KeyPairGeneratorSpi"); in configure()
28 provider.addAlgorithm("KeyFactory.DSA", PREFIX + "KeyFactorySpi"); in configure()
32 provider.addAlgorithm("Signature.SHA1withDSA", PREFIX + "DSASigner$stdDSA"); in configure()
35 provider.addAlgorithm("Signature.NONEWITHDSA", PREFIX + "DSASigner$noneDSA"); in configure()
61 …addSignatureAlgorithm(provider, "SHA224", "DSA", PREFIX + "DSASigner$dsa224", NISTObjectIdentifier… in configure()
62 …addSignatureAlgorithm(provider, "SHA256", "DSA", PREFIX + "DSASigner$dsa256", NISTObjectIdentifier… in configure()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/symmetric/
DPBEPBKDF2.java631 private static final String PREFIX = PBEPBKDF2.class.getName(); field in PBEPBKDF2.Mappings
673 … provider.addAlgorithm("SecretKeyFactory.PBKDF2WithHmacSHA1", PREFIX + "$PBKDF2WithHmacSHA1UTF8"); in configure()
674 …provider.addAlgorithm("SecretKeyFactory.PBKDF2WithHmacSHA224", PREFIX + "$PBKDF2WithHmacSHA224UTF8… in configure()
675 …provider.addAlgorithm("SecretKeyFactory.PBKDF2WithHmacSHA256", PREFIX + "$PBKDF2WithHmacSHA256UTF8… in configure()
676 …provider.addAlgorithm("SecretKeyFactory.PBKDF2WithHmacSHA384", PREFIX + "$PBKDF2WithHmacSHA384UTF8… in configure()
677 …provider.addAlgorithm("SecretKeyFactory.PBKDF2WithHmacSHA512", PREFIX + "$PBKDF2WithHmacSHA512UTF8… in configure()
678 …provider.addAlgorithm("SecretKeyFactory.PBEWithHmacSHA1AndAES_128", PREFIX + "$PBEWithHmacSHA1AndA… in configure()
679 …provider.addAlgorithm("SecretKeyFactory.PBEWithHmacSHA224AndAES_128", PREFIX + "$PBEWithHmacSHA224… in configure()
680 …provider.addAlgorithm("SecretKeyFactory.PBEWithHmacSHA256AndAES_128", PREFIX + "$PBEWithHmacSHA256… in configure()
681 …provider.addAlgorithm("SecretKeyFactory.PBEWithHmacSHA384AndAES_128", PREFIX + "$PBEWithHmacSHA384… in configure()
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/asymmetric/
DDSA.java16 …private static final String PREFIX = "com.android.org.bouncycastle.jcajce.provider.asymmetric" + "… field in DSA
30 provider.addAlgorithm("AlgorithmParameters.DSA", PREFIX + "AlgorithmParametersSpi"); in configure()
32 …provider.addAlgorithm("AlgorithmParameterGenerator.DSA", PREFIX + "AlgorithmParameterGeneratorSpi"… in configure()
34 provider.addAlgorithm("KeyPairGenerator.DSA", PREFIX + "KeyPairGeneratorSpi"); in configure()
35 provider.addAlgorithm("KeyFactory.DSA", PREFIX + "KeyFactorySpi"); in configure()
39 provider.addAlgorithm("Signature.SHA1withDSA", PREFIX + "DSASigner$stdDSA"); in configure()
42 provider.addAlgorithm("Signature.NONEWITHDSA", PREFIX + "DSASigner$noneDSA"); in configure()
68 …addSignatureAlgorithm(provider, "SHA224", "DSA", PREFIX + "DSASigner$dsa224", NISTObjectIdentifier… in configure()
69 …addSignatureAlgorithm(provider, "SHA256", "DSA", PREFIX + "DSASigner$dsa256", NISTObjectIdentifier… in configure()

12345678910>>...25