/external/curl/tests/certs/scripts/ |
D | genserv.sh | 27 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 …]
|
D | genroot.sh | 23 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/ |
D | curlmsg.sdl | 21 /* "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/ |
D | error_private.c | 24 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/ |
D | OpenSSLProvider.java | 37 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/ |
D | OpenSSLProvider.java | 42 private static final String PREFIX = OpenSSLProvider.class.getPackage().getName() + "."; field in OpenSSLProvider 76 String classOpenSSLContextImpl = PREFIX + "OpenSSLContextImpl"; in OpenSSLProvider() 98 put("SSLContext.Default", PREFIX + "DefaultSSLContextImpl" + defaultSSLContextSuffix); in OpenSSLProvider() 106 put("AlgorithmParameters.AES", PREFIX + "IvParameters$AES"); in OpenSSLProvider() 111 put("AlgorithmParameters.ChaCha20", PREFIX + "IvParameters$ChaCha20"); in OpenSSLProvider() 113 put("AlgorithmParameters.DESEDE", PREFIX + "IvParameters$DESEDE"); in OpenSSLProvider() 117 put("AlgorithmParameters.GCM", PREFIX + "GCMParameters"); in OpenSSLProvider() 121 put("AlgorithmParameters.OAEP", PREFIX + "OAEPParameters"); in OpenSSLProvider() 122 put("AlgorithmParameters.PSS", PREFIX + "PSSParameters"); in OpenSSLProvider() 123 put("AlgorithmParameters.EC", PREFIX + "ECParameters"); in OpenSSLProvider() [all …]
|
/external/rust/crates/libz-sys/src/zlib-ng/test/ |
D | example.c | 62 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 …]
|
D | infcover.c | 291 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)(©, &strm); in inf() 340 ret = PREFIX(inflateEnd)(©); assert(ret == Z_OK); in inf() [all …]
|
/external/elfutils/lib/ |
D | fixedsizehash.h | 74 #ifndef PREFIX 75 # define PREFIX macro 80 struct CONCAT(PREFIX,fshash) in CONCAT() argument 83 struct CONCAT(PREFIX,fshashent) in CONCAT() 98 CLASS struct CONCAT(PREFIX,fshash) * in CONCAT() argument 99 CONCAT(PREFIX,fshash_init) (size_t nelems) in CONCAT() 101 struct CONCAT(PREFIX,fshash) *result; in CONCAT() 116 result = (struct CONCAT(PREFIX,fshash) *) in CONCAT() 117 xcalloc (sizeof (struct CONCAT(PREFIX,fshash)) in CONCAT() 118 + (nelems + 1) * sizeof (struct CONCAT(PREFIX,fshashent)), 1); in CONCAT() [all …]
|
/external/bzip2/ |
D | Makefile | 27 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/ |
D | checksum_fuzzer.c | 17 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/ |
D | Tag.java | 32 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/ |
D | Makefile | 17 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/llvm-project/flang/include/flang/Evaluate/ |
D | type.h | 435 #define FOR_EACH_INTEGER_KIND_HELP(PREFIX, SUFFIX, K) \ argument 436 PREFIX<Type<TypeCategory::Integer, K>> SUFFIX; 437 #define FOR_EACH_REAL_KIND_HELP(PREFIX, SUFFIX, K) \ argument 438 PREFIX<Type<TypeCategory::Real, K>> SUFFIX; 439 #define FOR_EACH_COMPLEX_KIND_HELP(PREFIX, SUFFIX, K) \ argument 440 PREFIX<Type<TypeCategory::Complex, K>> SUFFIX; 441 #define FOR_EACH_CHARACTER_KIND_HELP(PREFIX, SUFFIX, K) \ argument 442 PREFIX<Type<TypeCategory::Character, K>> SUFFIX; 443 #define FOR_EACH_LOGICAL_KIND_HELP(PREFIX, SUFFIX, K) \ argument 444 PREFIX<Type<TypeCategory::Logical, K>> SUFFIX; [all …]
|
/external/boringssl/src/crypto/fipsmodule/aes/asm/ |
D | vpaes-x86_64.pl | 71 $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/toybox/scripts/ |
D | install.sh | 7 [ -z "$PREFIX" ] && PREFIX="/usr/toybox" 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 124 FALLBACK="$PREFIX" 134 FALLBACK="$PREFIX/fallback-$X" 137 if [ ! -f "$PREFIX/$i" ]
|
/external/llvm-project/llvm/test/FileCheck/comment/ |
D | bad-comment-prefix.txt | 6 RUN: FileCheck -check-prefix=PREFIX-EMPTY %s 9 RUN: FileCheck -check-prefix=PREFIX-EMPTY %s 12 RUN: FileCheck -check-prefix=PREFIX-EMPTY %s 15 RUN: FileCheck -check-prefix=PREFIX-EMPTY %s 16 PREFIX-EMPTY: error: supplied comment prefix must not be the empty string 21 RUN: FileCheck -check-prefix=PREFIX-BAD-CHAR1 %s 24 RUN: FileCheck -check-prefix=PREFIX-BAD-CHAR2 %s 25 PREFIX-BAD-CHAR1: error: supplied comment prefix must start with a letter and contain only alphanum… 26 PREFIX-BAD-CHAR2: error: supplied comment prefix must start with a letter and contain only alphanum… 31 RUN: FileCheck -check-prefix=COMMENT-PREFIX-DUP %s [all …]
|
/external/brotli/ |
D | configure-cmake | 31 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/eigen/bench/perf_monitoring/gemm/ |
D | run.sh | 120 make_backup $PREFIX"s"$bench 121 make_backup $PREFIX"d"$bench 122 make_backup $PREFIX"c"$bench 133 test_current $actual_rev float $PREFIX"s"$bench 134 test_current $actual_rev double $PREFIX"d"$bench 135 test_current $actual_rev "std::complex<double>" $PREFIX"c"$bench 141 cat $PREFIX"s""$bench.out" 145 cat $PREFIX"d""$bench.out" 149 cat $PREFIX"c""$bench.out" 152 ./make_plot.sh $PREFIX"s"$bench $bench [all …]
|
/external/libpng/scripts/ |
D | makefile.openbsd | 9 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/llvm-project/llvm/test/tools/llvm-libtool-darwin/ |
D | create-static-lib.test | 14 # CHECK-NAMES: [[PREFIX]]-input1.o 15 # CHECK-NAMES-NEXT: [[PREFIX]]-input2.o 16 # CHECK-NAMES-NEXT: [[PREFIX]]-x86_64.bc 23 # CHECK-SYMBOLS-NEXT: _symbol1 in [[PREFIX]]-input1.o 24 # CHECK-SYMBOLS-NEXT: _symbol2 in [[PREFIX]]-input2.o 25 # CHECK-SYMBOLS-NEXT: _x86_64 in [[PREFIX]]-x86_64.bc 34 # FORMAT-NEXT: [[PREFIX]]-input1.o 35 # FORMAT-NEXT: [[PREFIX]]-input2.o 36 # FORMAT-NEXT: [[PREFIX]]-x86_64.bc 46 # OVERWRITE-NAMES: [[PREFIX]]-input2.o [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ |
D | DSA.java | 12 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/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/ |
D | PBEPBKDF2.java | 558 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/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/asymmetric/ |
D | DSA.java | 16 …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()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/symmetric/ |
D | PBEPBKDF2.java | 631 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 …]
|