| /netvirt/usr/src/uts/common/rpc/ |
| xdrrdma_sizeof.c | 37 struct private { struct 57 struct private *xdrp = (struct private *)xdrs->x_private; 94 struct private *xdrp = (struct private *)xdrs->x_private; 126 struct private *xdrp = (struct private *)xdrs->x_private; 165 struct private *xdrp = (struct private *)xdrs->x_private; 171 mem_free(xdrp, sizeof (struct private)); [all...] |
| xdr_rdma.c | 54 struct private { struct 73 struct private *xdrp; 82 xdrp = (struct private *)kmem_zalloc(sizeof (struct private), KM_SLEEP); 104 (void) kmem_free(xdrs->x_private, sizeof (struct private)); 109 return (((struct private *)(xdrs->x_private))->xp_cl); 115 struct private *xdrp = (struct private *)(xdrs->x_private); 130 struct private *xdrp = (struct private *)(xdrs->x_private) [all...] |
| /netvirt/usr/src/cmd/ssh/ssh-add/ |
| ssh-add.c | 140 Key *private; local 150 private = key_load_private(filename, "", &comment); 154 if (private == NULL && pass != NULL) 155 private = key_load_private(filename, pass, NULL); 156 if (private == NULL) { 168 private = key_load_private(filename, pass, &comment); 169 if (private != NULL) 177 if (ssh_add_identity_constrained(ac, private, comment, lifetime)) { 184 } else if (ssh_add_identity(ac, private, comment)) { 194 key_free(private); [all...] |
| /netvirt/usr/src/cmd/cmd-crypto/pktool/ |
| delete.c | 277 keytype = "private"; 428 boolean_t private; local 430 * Symmetric keys and RSA/DSA private keys are always 458 private = ((oclass & PK_PRIVATE_OBJ) > 0); 461 &private, sizeof (private)); 476 rv = pk_delete_keys(kmfhandle, attrlist, num, "private", &nk); 495 private = B_FALSE; 747 case 'y': /* object type: public, private, both */ 805 /* if PUBLIC or PRIVATE obj was given, the old syntax was used. * [all...] |
| list.c | 31 * and cleans up. User must be logged into the token to list private 132 return ("RSA private key"); 134 return ("DSA private key"); 316 boolean_t private = B_FALSE; local 321 * Symmetric keys and RSA/DSA private keys are always 347 private = ((oclass & PK_PRIVATE_OBJ) > 0); 350 KMF_PRIVATE_BOOL_ATTR, &private, 351 sizeof (private)); 376 /* list asymmetric private keys */ 378 "asymmetric private"); [all...] |
| /netvirt/usr/src/cmd/fs.d/autofs/ |
| autod_mount.c | 82 char *private; /* fs specific data. eg prevhost in case of nfs */ local 140 private = ""; 182 mount_nfs(me, spec_mntpnt, private, overlay, uid,
|
| /netvirt/usr/src/lib/libresolv2/common/dst/ |
| rsaref_link.c | 464 * Converts contents of a private key file into a private RSA key. 597 R_RSA_PRIVATE_KEY *private; local 616 if ((private = (R_RSA_PRIVATE_KEY *) malloc(sizeof(R_RSA_PRIVATE_KEY))) 626 memset(private, 0, sizeof(*private)); 637 status = R_GeneratePEMKeys(public, private, &proto, &randomStruct); 642 SAFE_FREE(private); 648 rsa->rk_Private_Key = private;
|
| bsafe_link.c | 532 A_PKCS_RSA_PRIVATE_KEY *private = NULL; local 541 B_GetKeyInfo((POINTER *) &private, rkey, KI_PKCS_RSAPrivate); 550 private->modulus.data, 551 private->modulus.len)) <= 0) 557 private->publicExponent.data, 558 private->publicExponent.len)) <= 0) 564 private->privateExponent.data, 565 private->privateExponent.len)) <= 0) 571 private->prime[0].data, 572 private->prime[0].len)) < 0 630 A_PKCS_RSA_PRIVATE_KEY *private; local 816 B_KEY_OBJ private; local 1026 A_PKCS_RSA_PRIVATE_KEY *private = NULL; local [all...] |
| /netvirt/usr/src/cmd/ssh/libssh/common/ |
| key.c | 576 RSA *private; local 577 private = RSA_generate_key(bits, 35, NULL, NULL); 578 if (private == NULL) 580 return private; 586 DSA *private = DSA_generate_parameters(bits, NULL, 0, NULL, NULL, NULL, NULL); local 587 if (private == NULL) 589 if (!DSA_generate_key(private)) 591 if (private == NULL) 593 return private; 836 /* Converts a private to a public key * [all...] |
| /netvirt/usr/src/cmd/ssh/ssh/ |
| sshconnect1.c | 176 /* Decrypt the challenge using the private key. */ 218 Key *public, *private; local 260 * load the private key. Try first with empty passphrase; if it 264 private = public; 266 private = key_load_private_type(KEY_RSA1, authfile, "", NULL); 267 if (private == NULL && !options.batch_mode) { 274 private = key_load_private_type(KEY_RSA1, 283 if (private != NULL || quit) 291 if (private == NULL) { 309 respond_to_rsa_challenge(challenge, private->rsa) [all...] |
| sshconnect2.c | 1163 Key *private; local 1172 private = key_load_private_type(KEY_UNSPEC, filename, "", NULL); 1173 if (private == NULL) { 1181 private = key_load_private_type(KEY_UNSPEC, filename, 1202 Key *private; local 1463 Key *private = NULL; local [all...] |
| /netvirt/usr/src/cmd/ssh/ssh-agent/ |
| ssh-agent.c | 98 /* private key table, one per protocol version */ 142 /* return private key table for requested protocol version */ 159 /* return matching private key for given public key */ 237 Key *private = id->key; local 238 /* Decrypt the challenge using the private key. */ 239 if (rsa_private_decrypt(challenge, challenge, private->rsa) <= 0) 1049 /* Create private directory for agent socket */ 1052 perror("mkdtemp: private socket dir"); 1169 /* deny core dumps, since memory contains unencrypted private keys */
|
| /netvirt/usr/src/cmd/ssh/ssh-keygen/ |
| ssh-keygen.c | 157 #define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----" 343 int escaped = 0, private = 0, ok; local 364 private = 1; 389 k = private ? 396 ok = private ? 406 if (!private) 786 Key *private; local 795 private = key_load_private(identity_file, "", &comment); 796 if (private == NULL) { 803 private = key_load_private(identity_file, old_passphrase 867 Key *private; local 1003 Key *private, *public; local [all...] |
| /netvirt/usr/src/uts/common/fs/zfs/ |
| zfs_ctldir.c | 872 void *private; local 874 private = gfs_dir_inactive(vp); 875 if (private != NULL) { 879 kmem_free(private, sizeof (zfsctl_snapdir_t));
|
| /netvirt/usr/src/tools/abi/audit/ |
| abi_audit.c | 34 #define PRIVATE 2 195 case 't': /* check for private->public transition */ 198 case 'T': /* check for private->unexported transition */ 952 * e.g., public->private 1021 bvlist_t *private; local 1029 private = create_bv_list(Total_relcnt); 1035 bv_assign(private, p->lt_cat->ct_private); 1044 (bv_all_zero(private) == TRUE) && 1054 (bv_and(private, curr_rel_bitmask) != TRUE) && 1055 (bv_and(private, prev_rel_bitmask) != TRUE) & 1167 bvlist_t *private; local 1262 bvlist_t *private; local 1384 bvlist_t *private; local 1486 bvlist_t *private; local [all...] |
| /netvirt/usr/src/uts/common/crypto/io/ |
| ecc.c | 1032 uchar_t *private; local 1060 if ((rv = get_key_attr(key, CKA_VALUE, &private, 1064 ECkey.privateValue.data = private; [all...] |
| /netvirt/usr/src/uts/common/io/usb/usba/ |
| usba.c | 40 * USBA private variables and tunables 979 usba_init_list(usba_list_entry_t *element, usb_opaque_t private, 985 element->private = private; 1201 usb_opaque_t private = NULL; local 1205 private = element->private; 1209 return (private); 1227 new->private = head->private; [all...] |
| /netvirt/usr/src/uts/intel/io/dktp/drvobj/ |
| strategy.c | 1105 intptr_t private, cnt; local 1121 private = DBLK(bp); 1127 private = 0; 1131 private = 0; 1137 private = 0; 1140 private = DBLK(bp->av_forw); 1213 private = DBLK(bp); 1216 private = DBLK(bp); 1220 private = 0; 1239 private = 0 [all...] |
| /netvirt/usr/src/uts/common/io/lvm/md/ |
| md_names.c | 1647 uint_t private; local [all...] |
| md_mddb.c | 9332 int private; local [all...] |
| /netvirt/usr/src/lib/libkmf/plugins/kmf_pkcs11/common/ |
| pkcs11_spi.c | 487 boolean_t private, KMF_CERT_VALIDITY validity, 515 if (private) { 689 boolean_t private; local 726 (void *)&private, NULL); 728 private = B_FALSE; 733 rv = search_certs(handle, certlabel, issuer, subject, serial, private, 1277 boolean_t private; local 1300 (void *)&private, NULL); 1302 private = B_FALSE; [all...] |
| /netvirt/usr/src/uts/common/io/lvm/raid/ |
| raid.c | 2298 void *private; local 2663 void *private; local 3382 void *private; local [all...] |
| /netvirt/usr/src/uts/common/io/sfe/ |
| sfe_util.c | 124 * Private functions 4948 caddr_t private; local [all...] |