HomeSort by: relevance | last modified time | path
    Searched refs:DSA (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
intel-ixp42x-ixdpg425.dts 91 * of Realtek DSA switch on the board.
kirkwood-linksys-viper.dts 227 /* eth1 is connected to the switch at port 6. However DSA only supports a
kirkwood-dir665.dts 257 /* eth1 is connected to the switch as well. However DSA only supports a
  /src/usr.sbin/syslogd/
sign.c 48 * 2. The draft only defines DSA signatures. I hope it will be extended
49 * to DSS, thus allowing DSA, RSA (ANSI X9.31) and ECDSA (ANSI X9.62)
56 * 2. check; definitely only DSA in this version.
62 * - cannot use OpenPGP keys, only PKIX or DSA due to OpenSSL capabilities
108 /* this is the place to add non-DSA key types and algorithms */
198 DPRINTF(D_SIGN, "X.509 cert has no DSA key\n");
232 DSA *dsa; local in function:sign_get_keys
235 "--> use DSA with type 'K'\n");
240 if ((dsa = DSA_new()) == NULL)
    [all...]
tls.c 624 /* When using DSA keys the callback gets called twice.
2090 DSA *dsa; local in function:mk_x509_cert
2112 dsa = DSA_new();
2113 if (dsa == NULL) {
2118 if (!DSA_generate_parameters_ex(dsa, bits, NULL, 0, NULL, NULL, NULL)) {
2122 if (!DSA_generate_key(dsa)) {
2126 if (!EVP_PKEY_assign_DSA(pk, dsa)) {

Completed in 17 milliseconds