Hey guys, I really need some help.

I just installed OpenWrt on my router and want it to be able to back up the files off-site via an rsync utility.  However, the server uses an authorized_keys file to designate who is able to automatically log in without a password.  I've set up numerous windows machines with a simple routine of using ssh-keygen and appending the id_rsa.pub key to the authorized_keys file.

However, after installing this o/s I realized it does not have the ability to perform ssh-keygen and create the file type I want.  I researched more and found out that OpenWrt uses something called dropbear.  To create an rsa key it seems I am limited to using dropbearkey which does not create a usable key for me.  It creates gibberish.  Then comes dropbearconvert, which creates an rsa key which is a bit more readable, but still not usable. 

The format I'm looking for would come across as:

ssh-rsa AAAAB3Nza08efASFliwefw34SMP7u6+qwIcJmYZhqNCw4q7bTBDVZYqO2De5Iadt/HefLGPt+RHc+C2k129cqQ8t91TayRpFY7rjjzVS0+3HZQdenFfQA0PwgQaVGHsiZUui8B99g3s5pQiYA6lwTnP3lnUGUWIgTpdV/SoX2NGtjiKNV9YYmXJri5mBYzEiBSUlDyrEMvG1831blk/frXIx7G+TkB6BNgMC2N8AOhEYHzikS4a97t9v+VgLTFzKCzPYntQYihs7mEw62t+Tq0O9XObL8/OYoBuEwXdZ0onFc3nPCNeUK/kj1oNMfew0sB4ngWomimQgGjv/RMzYyvH3SlK9jXUA53WQ== root@noneofyourbusiness

But what I actually get from dropbearconvert is something like this:

-----BEGIN RSA PRIVATE KEY-----
MIICZAIBAAKBgwDzH/6t935nvh5ioZo5lNtm4EWpN6LbCHAWsi/OWekpUeB2Vz7o
qVIBy7xJ4Ovvyk0afI99MUjzTXkO8O0M5iEGH3pqKkhcG0Amj581aJUFQbsq2m4c
FBOMl0XrlwD+UODfyHOg5JDsrQWqUumOY7m+1Puwp42ihbeHj8RFK60pQgHtAgMB
AAECgYIE4Y7Pp9EgHJNIGCX8Q3aPL2/+mHkazCXR8tReYHQ7qeLnhVNkQOf+VLyM
QCmEeCuJnVgVI5zrE5JbYC9mK6WclZGvHg0F0uDAOqEYf5wuuQoACf0wscsBrxrz
76/PjDF0rvxM16LE4VOm61+Zk3TZzt22Z7CIznC4oDEh2D+J8NbxAkIA/QyIcoE8
ywhyPr26oxqfYuBd3Sj4uMF64/AMehdlotsvo/vgj/JpzRrnP7aFnrv/VJ0SW+1q
vYN0rPlwfgwQlr0CQgD19dWQB7xYZftDvoKR+r1xhUvU3bU3lNqXxZ6E6SfZTjPu
kL6ekqM7oBmBF25XeDZ+aHsuyiwLXkFeyqj3VYsi8QJBPpvWOrZ9KyLo2VsqDWbt
3pHyx2B2wYeldzYScDbPv86JaAJO2m64/LVWV+45+z86el3uh+4jBca7nHyO97DW
feUCQRBgylPI8BXC1LRyHyexVqQUiDQof0SwOM4abq/TBsBFoNel88uDYDM8OfaK
pOJWMuq/8lPvSneHUzsIq6+slpNBAkEiOu58bdXFIkBgfrl84humcM4Au5FXUmEO
xy1c6jfmLTMnL/ZuGdPyg0gScBeGUXD2OeD7cuZ9/2/c0kX4Oo0ldQ==
-----END RSA PRIVATE KEY-----


As you can see, there seems to be some conversion tricks to this and I was wondering how I might go about getting the rsa key in the first format, not the latter.  If anyone has done this or knows how to, or even knows another topic showing how to, please reply.  Thanks so much!