Displaying 13 results from an estimated 13 matches for "rkey".
Did you mean:
key
2003 Feb 09
1
Logging of comments on keys
...key_type(found), fp);
+ verbose("Comment on key: %s", cp);
xfree(fp);
break;
}
*** auth-rsa.c.orig Sun Feb 9 13:18:56 2003
--- auth-rsa.c Sun Feb 9 13:21:39 2003
***************
*** 153,159 ****
int
auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey)
{
! char line[8192], *file;
int allowed = 0;
u_int bits;
FILE *f;
--- 153,159 ----
int
auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey)
{
! char line[8192], *file, *extpubkey;
int allowed = 0;
u_int bits;
FILE *f;
***************
*** 164,169 ****
--...
2003 Mar 28
0
PRIVSEP annoys me.
...h the private key in the user's IC card, and send
> a
> response to the server.
>
> Here is the auth_icc_prepare_key() function in my auth-icc.c.
> This function gets the pubkey in the ~/.icc/authorized_key file.
>
> int
> auth_icc_prepare_key(struct passwd *pw, Key **rkey)
> {
> char line[8192], file[MAXPATHLEN];
> u_char n_e[131];
> FILE *f;
> struct stat st;
> Key *key;
>
> /* Temporarily use the user's uid. */
> temporarily_use_uid(pw);
>
> /* The authorized key file. */
> snprintf( file, sizeof file, "%.500...
2011 Nov 08
1
Question
Hi
My name is Rocky and I am trying to use the org.Dm.eg.db library.
When I am using the org.Dm.egFLYBASE2EG[fb_ids] it is stopping at a point where it cannot find any value for a given ID such as the following:
Error in .checkKeys(value, Rkeys(x), x@ifnotfound) :
value for "FBgn0004461" not found
Then the whole thing stops. I cannot retrieve any information on the values that has been found until this ID was reached.
Can anyone help in retrieving all the IDs without stopping at a certain ID or if the value for the ID not fou...
2024 Dec 12
0
NSD 4.11.0 released
...ose read from file.
All DNS related setting in the configuration file will be
reevaluated and effectuated after nsd-control reconfig.
- Merge #398: RFC 9660 The DNS Zone Version (ZONEVERSION) Option
- Merge #406: ohttp and tls-supported-groups SvcParam suppor
- Merge #408: NINFO, RKEY, RESINFO, WALLET, CLA and TA RR types
- Merge #409: Writing of NSAP-PTR, GPOS and HIP RR types
- Merge #407: Better balanced verbosity levels for logging.
BUG FIXES:
- Fix title underline and declaration after statement warnings.
- Add cross platform freebsd, openbsd and netbsd to gith...
2024 Dec 05
1
NSD 4.11.0rc1 pre-release
...ose read from file.
All DNS related setting in the configuration file will be
reevaluated and effectuated after nsd-control reconfig.
- Merge #398: RFC 9660 The DNS Zone Version (ZONEVERSION) Option
- Merge #406: ohttp and tls-supported-groups SvcParam suppor
- Merge #408: NINFO, RKEY, RESINFO, WALLET, CLA and TA RR types
- Merge #409: Writing of NSAP-PTR, GPOS and HIP RR types
- Merge #407: Better balanced verbosity levels for logging.
BUG FIXES:
- Fix title underline and declaration after statement warnings.
- Add cross platform freebsd, openbsd and netbsd to gith...
2006 Jan 14
2
CentOS 4.2 x86_64
I have a couple of 64-Bit Xeon's with CentOS 4.2 x86_64 installed on
them. They don't all have the same motherboards.
I've having a difficult time getting CentOS 4.2 x86_64 to boot on some
of them in SMP mode (UP works fine). After the installation of CD, it
boots up but kernel panics with the following error:
Badness in i8042_panic_blink at drivers/input/serio/i8042.c:992
This is
2019 Apr 13
1
[RFC 3/3] RDMA/virtio-rdma: VirtIO rdma driver
...+
> +struct rsp_create_pd {
> + __u32 pdn;
> +};
> +
> +struct cmd_destroy_pd {
> + __u32 pdn;
> +};
> +
> +struct cmd_get_dma_mr {
> + __u32 pdn;
> + __u32 access_flags;
> +};
> +
> +struct rsp_get_dma_mr {
> + __u32 mrn;
> + __u32 lkey;
> + __u32 rkey;
> +};
> +
> +/* TODO: Move to uapi header file */
> +
> +struct virtio_rdma_ib_cq {
> + struct ib_cq ibcq;
> + u32 cq_handle;
> +};
> +
> +/* TODO: For the scope fof the RFC i'm utilizing ib*_*_attr structures */
> +
> +static int virtio_rdma_exec_cmd(struct...
2019 Apr 11
9
[RFC 0/3] VirtIO RDMA
Data center backends use more and more RDMA or RoCE devices and more and
more software runs in virtualized environment.
There is a need for a standard to enable RDMA/RoCE on Virtual Machines.
Virtio is the optimal solution since is the de-facto para-virtualizaton
technology and also because the Virtio specification
allows Hardware Vendors to support Virtio protocol natively in order to
achieve
2019 Apr 11
9
[RFC 0/3] VirtIO RDMA
Data center backends use more and more RDMA or RoCE devices and more and
more software runs in virtualized environment.
There is a need for a standard to enable RDMA/RoCE on Virtual Machines.
Virtio is the optimal solution since is the de-facto para-virtualizaton
technology and also because the Virtio specification
allows Hardware Vendors to support Virtio protocol natively in order to
achieve
2019 Apr 11
1
[RFC 3/3] RDMA/virtio-rdma: VirtIO rdma driver
...+struct rsp_create_cq {
+ __u32 cqn;
+};
+
+struct cmd_destroy_cq {
+ __u32 cqn;
+};
+
+struct rsp_create_pd {
+ __u32 pdn;
+};
+
+struct cmd_destroy_pd {
+ __u32 pdn;
+};
+
+struct cmd_get_dma_mr {
+ __u32 pdn;
+ __u32 access_flags;
+};
+
+struct rsp_get_dma_mr {
+ __u32 mrn;
+ __u32 lkey;
+ __u32 rkey;
+};
+
+/* TODO: Move to uapi header file */
+
+struct virtio_rdma_ib_cq {
+ struct ib_cq ibcq;
+ u32 cq_handle;
+};
+
+/* TODO: For the scope fof the RFC i'm utilizing ib*_*_attr structures */
+
+static int virtio_rdma_exec_cmd(struct virtio_rdma_info *di, int cmd,
+ struct scatterlist *in,...
2019 Apr 11
1
[RFC 2/3] hw/virtio-rdma: VirtIO rdma device
...cmd_get_dma_mr cmd = {};
+ struct rsp_get_dma_mr rsp = {};
+ size_t s;
+
+ s = iov_to_buf(in, 1, 0, &cmd, sizeof(cmd));
+ if (s != sizeof(cmd)) {
+ return VIRTIO_RDMA_CTRL_ERR;
+ }
+
+ /* TODO: Call rdma_rm_alloc_mr */
+ rsp.mrn = 0x10;
+ rsp.lkey = 0x11;
+ rsp.rkey = 0x12;
+ printf("%s: 0x%x\n", __func__, rsp.mrn);
+
+ s = iov_from_buf(out, 1, 0, &rsp, sizeof(rsp));
+
+ return s == sizeof(rsp) ? VIRTIO_RDMA_CTRL_OK :
+ VIRTIO_RDMA_CTRL_ERR;
+}
+
+static void virtio_rdma_init_dev_caps(VirtIORdma *rdev)
+{
+...
2003 Oct 08
4
OS/390 openssh
...authctxt->valid)
fatal("%s: authctxt not valid", __func__);
- blob = buffer_get_string(m, &blen);
+ blob = buffer_get_binary(m, &blen);
if (!monitor_allowed_key(blob, blen))
fatal("%s: bad key, not previously allowed", __func__);
if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
@@ -1431,14 +1431,14 @@
if (ssh1_challenge == NULL)
fatal("%s: no ssh1_challenge", __func__);
- blob = buffer_get_string(m, &blen);
+ blob = buffer_get_binary(m, &blen);
if (!monitor_allowed_key(blob, blen))
fatal("%s: bad...
2023 Aug 25
2
Query on finding root
Sir,
I want to solve the equation Q(u)=mean, where Q(u) represents the quantile
function. Here my Q(u)=(c*u^lamda1)/((1-u)^lamda2), which is the quantile
function of Davies (Power-pareto) distribution. Hence I want to solve ,
*(c*u^lamda1)/((1-u)^lamda2)=28353.7....(Eq.1)*
where lamda1=0.03399381, lamda2=0.1074444 and c=26104.50. When I used the
package 'Davies' and solved Eq 1, I got the