Displaying 2 results from an estimated 2 matches for "modn".
Did you mean:
mode
2015 Nov 14
2
llvm, new language and inline assembly.
Hello,
I am creating a very small language which needs inline assembly, with llvm as a compiler framework.
On x86, I am interested in the "out","in","mfence","lfence".. and other specific sse operations.
How may I tell llvm about them in my language?
-> I read that "module asm" should be my companion but I am not sure how it works (the doc
2005 May 19
1
ssh-keygen private keys export - new feature
...it(&b);
+ buffer_put_int(&b, SSH_COM_PRIVATE_KEY_MAGIC);
+ buffer_put_int(&b, 0);
+
+ switch (key->type) {
+ case KEY_DSA:
+ buffer_put_cstring(&b, "dl-modp{sign{dsa-nist-sha1},dh{plain}}");
+ break;
+ case KEY_RSA:
+ buffer_put_cstring(&b, "if-modn{sign{rsa-pkcs1-md5}}");
+ break;
+ default:
+ error("do_convert_private_ssh2_to_blob: unsupported key type %d",
+ key->type);
+ buffer_free(&b);
+ return 0;
+ }
+
+ buffer_put_cstring(&b, "none");
+
+ len1 = buffer_len(&b);
+ buffer_put_int(...