/*
* Principal Author: Brian Wellington
- * $Id: dst_result.c,v 1.18 2001/07/10 19:08:28 bwelling Exp $
+ * $Id: dst_result.c,v 1.18.2.1 2001/12/19 01:29:29 marka Exp $
*/
#include <config.h>
"UNUSED9", /* 9 */
"UNUSED10", /* 10 */
"sign failure", /* 11 */
- "UNUSED12", /* 12 */
+ "UNUSED12", /* 12 */
"UNUSED13", /* 13 */
"verify failure", /* 14 */
"not a public key", /* 15 */
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: gssapictx.c,v 1.3 2001/01/09 21:55:35 bwelling Exp $ */
+/* $Id: gssapictx.c,v 1.3.2.1 2001/12/19 01:29:32 marka Exp $ */
#include <config.h>
} while (0)
#define REGION_TO_GBUFFER(r, gb) \
- do { \
+ do { \
(gb).length = (r).length; \
(gb).value = (r).base; \
} while (0)
#define GBUFFER_TO_REGION(gb, r) \
- do { \
+ do { \
(r).length = (gb).length; \
(r).base = (gb).value; \
} while (0)
/*
* Principal Author: Brian Wellington
- * $Id: hmac_link.c,v 1.53 2001/05/31 18:34:50 tale Exp $
+ * $Id: hmac_link.c,v 1.53.2.1 2001/12/19 01:29:33 marka Exp $
*/
#include <config.h>
static isc_boolean_t
hmacmd5_isprivate(const dst_key_t *key) {
UNUSED(key);
- return (ISC_TRUE);
+ return (ISC_TRUE);
}
static isc_boolean_t
/*
* Principal Author: Brian Wellington
- * $Id: openssldh_link.c,v 1.38.2.1 2001/12/12 17:05:18 marka Exp $
+ * $Id: openssldh_link.c,v 1.38.2.2 2001/12/19 01:29:34 marka Exp $
*/
#ifdef OPENSSL
static isc_boolean_t
openssldh_isprivate(const dst_key_t *key) {
DH *dh = (DH *) key->opaque;
- return (ISC_TF(dh != NULL && dh->priv_key != NULL));
+ return (ISC_TF(dh != NULL && dh->priv_key != NULL));
}
static isc_boolean_t
}
}
- i = 0;
+ i = 0;
priv.elements[i].tag = TAG_DH_PRIME;
priv.elements[i].length = BN_num_bytes(dh->p);
case TAG_DH_PUBLIC:
dh->pub_key = bn;
break;
- }
+ }
}
dst__privstruct_free(&priv, mctx);
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: openssldsa_link.c,v 1.4 2001/07/10 04:01:17 bwelling Exp $ */
+/* $Id: openssldsa_link.c,v 1.4.2.1 2001/12/19 01:29:35 marka Exp $ */
#ifdef OPENSSL
static isc_boolean_t
openssldsa_isprivate(const dst_key_t *key) {
DSA *dsa = (DSA *) key->opaque;
- return (ISC_TF(dsa != NULL && dsa->priv_key != NULL));
+ return (ISC_TF(dsa != NULL && dsa->priv_key != NULL));
}
static isc_boolean_t
case TAG_DSA_PUBLIC:
dsa->pub_key = bn;
break;
- }
+ }
}
dst__privstruct_free(&priv, mctx);
/*
* Principal Author: Brian Wellington
- * $Id: opensslrsa_link.c,v 1.12.2.2 2001/12/12 17:05:20 marka Exp $
+ * $Id: opensslrsa_link.c,v 1.12.2.3 2001/12/19 01:29:31 marka Exp $
*/
#ifdef OPENSSL
static isc_boolean_t
opensslrsa_isprivate(const dst_key_t *key) {
RSA *rsa = (RSA *) key->opaque;
- return (ISC_TF(rsa != NULL && rsa->d != NULL));
+ return (ISC_TF(rsa != NULL && rsa->d != NULL));
}
static isc_boolean_t
case TAG_RSA_COEFFICIENT:
rsa->iqmp = bn;
break;
- }
+ }
}
dst__privstruct_free(&priv, mctx);