Displaying 2 results from an estimated 2 matches for "certhandle".
Did you mean:
certhandler
2011 Mar 15
1
error SSL_connect SYSCALL returned=5 errno=0 state=SSLv2/v3 read server hello A
...debug: Calling puppetca.getcert
warning: peer certificate won''t be verified in this SSL session
/usr/lib/ruby/1.8/puppet/network/xmlrpc/client.rb:57:in `getcert''
/usr/lib/ruby/1.8/puppet/network/client/ca.rb:26:in `request_cert''
/usr/lib/ruby/1.8/puppet/executables/client/certhandler.rb:38:in
`retrieve_cert''
/usr/lib/ruby/1.8/puppet/executables/client/certhandler.rb:27:in
`read_retrieve''
/usr/sbin/puppetd:347
err: Could not request certificate: Certificate retrieval failed:
Certificates were not trusted: SSL_connect SYSCALL returned=5 errno=0
state=SSLv2/v3 r...
2012 Sep 17
9
[PATCH] Upgrade vtpmd to berlios version 0.7.4
...:35:35.000000000 -0700
-@@ -182,7 +182,8 @@ TPM_RESULT TPM_CertifyKey(TPM_KEY_HANDLE
- TPM_KEY_DATA *cert, *key;
- sha1_ctx_t sha1_ctx;
- BYTE *buf, *p;
-- UINT32 length;
-+ UINT32 length32;
-+ size_t length;
- info("TPM_CertifyKey()");
- /* get keys */
- cert = tpm_get_key(certHandle);
-@@ -264,14 +265,15 @@ TPM_RESULT TPM_CertifyKey(TPM_KEY_HANDLE
- /* compute the digest of the CERTIFY_INFO[2] structure and sign it */
- length = sizeof_TPM_CERTIFY_INFO((*certifyInfo));
- p = buf = tpm_malloc(length);
-+ length32=(UINT32) length;
- if (buf == NULL
-- || tpm_marsha...