HomeSort by relevance Sort by last modified time
    Searched defs:signature (Results 1 - 25 of 73) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/cmd/ssh/libssh/common/
kexdhc.c 49 u_char *server_host_key_blob = NULL, *signature = NULL; local
96 signature = packet_get_string(&slen);
129 if (key_verify(server_host_key, signature, slen, hash, 20) != 1)
132 xfree(signature);
kexdhs.c 49 u_char *kbuf, *hash, *signature = NULL, *server_host_key_blob = NULL; local
125 key_sign(server_host_key, &signature, &slen, hash, 20);
133 packet_put_string(signature, slen);
136 xfree(signature);
kexgexc.c 50 u_char *kbuf, *hash, *signature = NULL, *server_host_key_blob = NULL; local
141 signature = packet_get_string(&slen);
180 if (key_verify(server_host_key, signature, slen, hash, 20) != 1)
183 xfree(signature);
kexgexs.c 50 u_char *kbuf, *hash, *signature = NULL, *server_host_key_blob = NULL; local
170 key_sign(server_host_key, &signature, &slen, hash, 20);
179 packet_put_string(signature, slen);
182 xfree(signature);
  /onnv/onnv-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
softSignUtil.c 120 * pSignature: pointer to the signature after signing
121 * pulSignatureLen: pointer to the length of the signature
172 CK_BYTE signature[DES_BLOCK_LEN]; /* use the maximum size */ local
177 ulDataLen, signature, pulSignatureLen, B_TRUE,
186 (void) memcpy(pSignature, signature, *pulSignatureLen);
302 * pSignature: pointer to the signature after signing
303 * pulSignatureLen: pointer to the length of the signature
353 CK_BYTE signature[DES_BLOCK_LEN]; /* use the maximum size */ local
358 signature, pulSignatureLen, B_TRUE, B_TRUE);
366 (void) memcpy(pSignature, signature, *pulSignatureLen)
    [all...]
softVerifyUtil.c 121 * pSignature: pointer to the signature
122 * ulSignatureLen: length of the signature
179 CK_BYTE signature[DES_BLOCK_LEN]; /* use the maximum size */ local
187 ulDataLen, signature, &len, B_FALSE, B_FALSE);
194 if (memcmp(signature, pSignature, len) != 0) {
313 * pSignature: pointer to the signature
314 * ulSignatureLen: length of the signature
370 CK_BYTE signature[DES_BLOCK_LEN]; /* use the maximum size */ local
378 signature, &len, B_FALSE, B_TRUE);
385 if (memcmp(signature, pSignature, len) != 0)
    [all...]
softFipsPostUtil.c 90 /* Variables used for Signature/Verification functions. */
93 unsigned char *signature; local
109 /* Check to see if key object supports signature. */
113 /* Determine length of signature. */
134 /* Allocate space for signature data. */
135 signature = (unsigned char *) calloc(1, signature_length);
136 if (signature == NULL) {
143 free(signature);
148 signature, &signature_length);
150 free(signature);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/data/
DhcptabRecord.java 42 protected String signature = DEFAULT_SIGNATURE; field in class:DhcptabRecord
49 signature = DEFAULT_SIGNATURE;
60 signature = sig;
88 signature = sig;
92 return signature;
96 return new String(key + " " + flag + " " + signature + " " + value);
  /onnv/onnv-gate/usr/src/cmd/ssh/ssh-keysign/
ssh-keysign.c 157 u_char *signature, *data; local
253 if (key_sign(keys[i], &signature, &slen, data, dlen) != 0)
259 buffer_put_string(&b, signature, slen);
  /onnv/onnv-gate/usr/src/uts/common/io/scsi/adapters/iscsi/
iscsi_doorclt.c 52 size_t signature; member in struct:_mybuffer
206 ASSERT(buffer->signature == ISCSI_DOOR_REQ_SIGNATURE);
207 if (buffer->signature == ISCSI_DOOR_REQ_SIGNATURE) {
279 buffer->signature = ISCSI_DOOR_REQ_SIGNATURE;
339 req->hdr.signature = ISCSI_DOOR_REQ_SIGNATURE;
383 (cnf->hdr.signature != ISCSI_DOOR_REQ_SIGNATURE) ||
iscsi_thread.h 59 uint32_t signature; member in struct:_iscsi_thread
  /onnv/onnv-gate/usr/src/common/crypto/fips/
fips_ecc_util.c 77 SECItem signature, digest; local
137 * ECDSA Known Answer Signature Test.
164 signature.type = siBuffer;
165 signature.data = sig;
166 signature.len = sizeof (sig);
168 ecdsaStatus = ECDSA_SignDigestWithSeed(ecdsa_private_key, &signature,
175 if ((signature.len != knownSignatureLen) ||
176 (memcmp(signature.data, knownSignature,
185 ecdsaStatus = ECDSA_VerifyDigest(&ecdsa_public_key, &signature,
  /onnv/onnv-gate/usr/src/common/openssl/crypto/ecdsa/
ecdsatest.c 190 ECDSA_SIG *signature = NULL; local
207 /* create the signature */
208 signature = ECDSA_do_sign(digest, 20, key);
209 if (signature == NULL)
213 /* compare the created signature with the expected signature */
219 if (BN_cmp(signature->r ,r) || BN_cmp(signature->s, s))
223 /* verify the signature */
224 if (ECDSA_do_verify(digest, 20, signature, key) != 1
291 unsigned char *signature = NULL; local
    [all...]
  /onnv/onnv-gate/usr/src/grub/grub-0.97/netboot/
pci_io.c 308 unsigned long signature; local
329 : "=d" (signature),
339 if (present_status || (signature != PCI_SIGNATURE)) {
370 if (check->fields.signature != BIOS32_SIGNATURE)
  /onnv/onnv-gate/usr/src/uts/common/io/usb/scsa2usb/
usb_ms_bulkonly.c 166 * - check length equals 13, signature, and matching tag
345 *mp->b_wptr++ = CBW_MSB(CBW_SIGNATURE); /* CBW Signature */;
570 uint_t signature, tag, status; local
602 signature = SCSA2USB_MK_32BIT(csw.csw_dCSWSignature3,
612 "CSW: Signature = 0x%x Status = 0%x Tag = 0x%x Residue = 0x%x",
613 signature, status, tag, residue);
616 if ((signature != CSW_SIGNATURE) || (tag != cmd->cmd_tag) ||
  /onnv/onnv-gate/usr/src/uts/common/fs/smbsrv/
smb_signing.c 28 * The routines calculate the signature of a SMB message in an mbuf chain.
155 * Calculates MAC signature for the given buffer and returns
158 * The sequence number is placed in the first four bytes of the signature
159 * field of the signature and the other 4 bytes are zeroed.
160 * The signature is the first 8 bytes of the MD5 result of the
211 * of the signature field in little endian format.
212 * We are using a buffer to represent the signature
243 /* Digest the SMB packet up to the signature field */
268 * Digest in the seq_buf instead of the signature
279 /* Find the end of the signature field *
425 unsigned char signature[SMB_SIG_SIZE]; local
    [all...]
  /onnv/onnv-gate/usr/src/grub/grub-0.97/stage2/
smp-imps.h 148 unsigned signature; member in struct:imps_processor
  /onnv/onnv-gate/usr/src/lib/libzfs_jni/common/
libzfs_jni_util.c 204 char signature[1024]; local
206 (void) snprintf(signature, sizeof (signature), "L%s;",
211 env, class, field_name, signature);
libzfs_jni_property.c 34 /* Signature for function to convert string to a specific Java object */
37 /* Signature for function to convert uint64_t to a specific Java object */
195 char signature[1024]; local
208 (void) snprintf(signature, sizeof (signature),
213 env, class, "<init>", signature);
221 (void) snprintf(signature, sizeof (signature),
227 env, class, "<init>", signature);
288 char signature[1024] local
341 char signature[1024]; local
412 char signature[1024]; local
437 char signature[1024]; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/sun4/sys/
cpu_sgnblk_defs.h 44 * Build a CPU signature given a signature, state and sub-state.
50 * Definition of a CPU signature.
58 uint32_t signature; member in union:__anon8810
62 * CPU Signatures - the signature defines the entity that the CPU is executing.
63 * This entity can be the OS, OPB or the debugger. This signature consists of
  /onnv/onnv-gate/usr/src/uts/sun4u/boston/os/
boston.c 340 * "signature" on this platform - not individual cpu signatures
346 dp_cpu_signature_t signature; local
353 * setting of the substate of the signature.
359 * A panic reboot is detected by a current (previous) signature
360 * state of SIGST_EXIT, and a new signature substate of SIGSUBST_REBOOT.
361 * The domain signature state SIGST_EXIT is used as the panic flow
382 current_sgn.signature = CPU_SIG_BLD(sig, state, sub_state);
393 signature.cpu_id = -1;
394 signature.sig = sig;
395 signature.states = state
    [all...]
  /onnv/onnv-gate/usr/src/uts/sun4u/seattle/os/
seattle.c 342 * "signature" on this platform - not individual cpu signatures
348 dp_cpu_signature_t signature; local
355 * setting of the substate of the signature.
361 * A panic reboot is detected by a current (previous) signature
362 * state of SIGST_EXIT, and a new signature substate of SIGSUBST_REBOOT.
363 * The domain signature state SIGST_EXIT is used as the panic flow
384 current_sgn.signature = CPU_SIG_BLD(sig, state, sub_state);
395 signature.cpu_id = -1;
396 signature.sig = sig;
397 signature.states = state
    [all...]
  /onnv/onnv-gate/usr/src/lib/libelfsign/common/
elfcertlib.c 483 * OUT sig - must be big enough to hold the signature of data
496 KMF_DATA signature; local
529 signature.Data = (uchar_t *)sig;
530 signature.Length = *sig_len;
543 KMF_OUT_DATA_ATTR, &signature, sizeof (KMF_DATA));
557 *sig_len = signature.Length;
566 * signature
575 const uchar_t *signature, size_t sig_len,
588 insig.Data = (uchar_t *)signature;
  /onnv/onnv-gate/usr/src/uts/common/sys/crypto/
elfsign.h 73 uchar_t signature[1]; member in struct:kcf_door_arg_s::__anon45::kcf_door_result_s
81 * File Signature Structure
89 struct filesig { /* one of these for each signature */
  /onnv/onnv-gate/usr/src/uts/common/sys/scsi/adapters/
iscsi_door.h 50 uint32_t signature; member in struct:_iscsi_door_msg_hdr

Completed in 840 milliseconds

1 2 3