Encrypt file without the plain text extension

hi
I am encrypting a txt file using GnuPG. The command that i am using encrypts the file and puts .gpg extension to the plain text extension. For example if my plain text file is test.txt after encryption the file name becomes test.txt.gpg. My requirement is that the encrypted file should not have the plaintext extension. So the encrypted should be test.gpg instead of test.txt.gpg? Is this possible? If yes, please give me some ideas
Thanks in advance

Unless I am much mistaken, the gpg command has nothing to do with Java programming whatsoever. Your question is 100% off topic. Locking the thread.

Similar Messages

  • .ics file opened as plain text

    Hi,
    I create a hyperlink to an .ics file on my webpage. But it always show the plain text in the browser instead of download the file. Could anyone help?
    Thanks a lot.

    Hi,
    You can try to configure .ics file types as '''application/octet-stream'''.

  • Urgent! Can't open encrypted file under the same user.

    My system is X61s, Windows XP pro sp3.
    There is no change of user account, no reinstallation or recovery of system.
    I used EPS encrypted some of my important files last month. Without any user account changes and system reinstallation I suddenly can not open the encrypted files anymore. I am aware that the change of user account or reinstalling the system will change the encrypted ID, then the encrypted file will not be opened unless there is a digital certificate of the user that encrypted the file. However I have been using the same user account since I bought the laptop and I have never reinstalled or recovered the system.
    I have tried to encrypted some other files and these files can be opened without any problem. But only the file that I encrypted about a month ago can not be opened.  Those are very important files for me. Can anyone help me to get my files back please!!!
    mod edit: moved to windows forum for better exposure.
    Message Edited by erik on 10-01-2008 11:51 PM

    hello you did not mention any error messages you were facing??
    i can only assume you are getting the follwing messages if you try to open an encrypted file...
    Cause: Encrypting File System (EFS) only works on files and folders on NTFS file system volumes. If the folder or file you are trying to encrypt is on a FAT or FAT32 volume, the Advanced button does not appear in the properties of that folder or file.
    Solution:
    Convert the volume to NTFS with the convert utility.
    Open command prompt
    Type:
    convert drive /fs:ntfs
    where drive is the drive letter of the intended drive.
    "the recovery policy configured for this system contains an invalid security certificate" or "BAD_RECOVERY_POLICY" OCCURS
    Cause: The Encrypting File System (EFS) recovery policy implemented on this computer contains one or more EFS recovery agent certificates that have expired. These certificates cannot be used.
    Solution:
    Either renew the existing certificates or generate new certificates for the EFS recovery agents and reapply the recovery agent policy with those certificates.
    the acess denied message occurs when trying to open an encrypted file
    Cause: The file was encrypted by Encrypting File System (EFS) using a public key certificate and the associated private key for this certificate is not available on this computer.
    Solution:
    Locate the private key for the appropriate certificate and import it onto this computer using the Certificates snap-in.
    Cheers and regards,
    • » νιנαソѕαяα∂нι ѕαмανє∂αм ™ « •
    ●๋•کáŕádhí'ک díáŕý ツ
    I am a volunteer here. I don't work for Lenovo

  • [Mail] Replacing a signature with a text in the plain text alternative..?

    Hi all.
    I just created a signature for Mail. All is good, I created it in HTML and adapted it accordingly. The issue is, I have my name on it in a sort of logotype so I'm not typing my name explicitly in any email. Now, if the application settings of the other party is set to display emails in plain text format, the plain text alternative of the email will naturally omit the signature thus my name.
    Is there any chance I can make it replace the signature with my name for the plain text version? I tried using the 'alt' attribute in the 'object', 'div' and 'img' tags, CDATA and some other tricks but no luck yet. Hope someone has an experience in this subject that has resulted in success...
    Thanks in advance.

    If you open a HTML document in a text editor (not TextEdit), you will see stuff like:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/2000/REC-xhtml1-20000126/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
    <title>Untitled</title>
    <meta name="generator" content="BBEdit 6.5.3" />
    </head>
    <body>
    </body>
    </html>
    The part that you need to keep is just the anchor tag:
    It depends on how the document is saved, so if an application includes the headers (you can't really tell by just looking at the rendered document), you need to manually remove them. I use BBEdit to create a HTML file with just the anchor tag, so I don't have to worry about what an application is going to copy it as.

  • Saving a PDF file without the comments

    In Acrobat Reader, is it possible to save a copy of a PDF file without the comments.
    I'm doing a PhD, and would like to be able to send some scientific papers to colleagues without the annotation I may have added. Of course, manually removing all the comments is not a good solution.

    In the Comment panel, go to the Comments List, press Ctrl+A and then Delete.

  • Unable to upload RTF file in the long text

    Hi all,
    Could you please help me out in this issue. I am trying to upload the RTF file in the long text editor through this menu path Text-> Upload->RTF file.The RTF file is about only 56 KB memory size consists only texts.
    I could able to select the file and when i am executing , ABAP dump is showing as follows:
    Runtime error : TABLE_INVALID_INDEX
    abap program : SAPLSTXK
    Whether any SAP notes to be applied for this ?
    Please throw you ideas
    Regards,
    Suresh.

    try this.
    REPORT YCMTESTE LINE-SIZE 255 MESSAGE-ID TD.
    PARAMETERS:
    TEXTNAME LIKE THEAD-TDNAME DEFAULT 'SAPSCRIPT-DRUCKERTEST',
    FILE LIKE RLGRAP-FILENAME DEFAULT 'C:\temp\'.
    DATA: TEXTHEADER LIKE THEAD.
    DATA: TEXTLINES LIKE TLINE OCCURS 100 WITH HEADER LINE.
    CALL FUNCTION 'READ_TEXT'
    EXPORTING NAME = TEXTNAME
    LANGUAGE = SY-LANGU
    OBJECT = 'TEXT'
    ID = 'ST '
    IMPORTING HEADER = TEXTHEADER
    TABLES LINES = TEXTLINES
    EXCEPTIONS OTHERS = 1.
    CHECK SY-SUBRC = 0.
    CALL FUNCTION 'EXPORT_TEXT'
    EXPORTING CODEPAGE = '1133'
    FILE = FILE
    FORMATWIDTH = 132
    FORMAT_TYPE = 'RTF'
    HEADER = TEXTHEADER
    SSHEET = ' '
    WITH_TAB = ' '
    TABLES ITF_LINES = TEXTLINES
    EXCEPTIONS DOWNLOAD_ERROR = 1
    FILE_OPEN_ERROR = 2
    FILE_WRITE_ERROR = 3.
    CASE SY-SUBRC.
    WHEN 0. MESSAGE S807 WITH FILE.
    WHEN 1. MESSAGE E815 WITH FILE.
    WHEN 2. MESSAGE E811 WITH FILE.
    WHEN 3. MESSAGE E814 WITH FILE.
    ENDCASE.
    Reference::[http://help.sap.com/saphelp_sm32/helpdata/en/d6/0db7f3494511d182b70000e829fbfe/content.htm]
    <removed_by_moderator>
    Edited by: Juan Reyes on May 16, 2011 12:05 PM

  • Is possible see a pdf file without the buttons of the program adobe? don´t permit a copy of the file

    Is possible see a pdf file without the buttons of the program adobe? don´t permit a copy of the file

    For the hiding, go to the document properties under initial view. You may confuse some folks if there is no file menu to close the file (a lot of folks just can't get the keyboard shortcut, alt-F4, into their head. They are going to look for where to find the file menu to close.

  • I was lately downlaoding a 700mb file, but i lost the internet connection and i have the .part file and i cant click resume, is their any way that i can continue dowlaoding the file without the need redownloading from the begining?

    I was lately downlaoding a 700mb file, but i lost the internet connection and only 635mb was downloaded and i have the .part file but the download menu says that download failed so i cant click resume, is their any way that i can continue dowlaoding the file without the need redownloading from the beginning?

    I do not know if your file can be recovered.  But I may be able help you to recreate it with ease.  If you will settle for a composite where all image are re-sized for a particular tile size and virtually cropped to its aspect ratio.  However all source image need be gathered into a folder to use my script process. Paste Image Roll Script and Picture Package Support  Link  http://www.mouseprints.net/old/dpr/PasteImageRoll.jsx

  • Is it possible to create a control file without the datafiles

    Hi All,
    Is it possible to create a control file without the datafiles?
    on any OS or DB version
    regards,
    sachin

    if I understand properly:
    - you have a script to recreate the controlfile
    - you have all of your database files backed up except your controlfiles
    This should work as this is how we sometimes refresh dev databases:
    1) restore the copies of the database files
    2) recreate the controlfile
    3) recover the database files to the desired point in time (if hot backup or archivelogs are available, otherwise, it would be as of the time of the backup)
    4) add temp files to temporary tablespace(s)
    The simpler solution would be to backup your controlfile at the same time as your datafiles (RMAN or o/s copy).
    I hope I understood your question properly.

  • Is there a keyboard shortcut to delete files without the need to use the mouse? In OS X Mavericks.

    Is there a keyboard shortcut to delete files without the need to use the mouse in OS X Mavericks?

    my question is precise
    Not exactly........
    Cmd-Delete deletes a selected file without a mouse.
    What you want, I think, is a way to select the file (presumably in Finder) without a mouse so that it can be deleted.
    If you open a new Finder window - Cmd-N you can navigate with the up/down arrow keys as you navigate a file is selected , once selected it can be deleted with cmd-delete.
    If while navigateing with the up/dpwn arrow keys you encounter a folder you can delete the folder with cmd-delete or open the folder with the right arrow and proceed to naviagte and delete.

  • I have a friend who I was helping out with his iPhone. He has since lost it. I believe I backed it up to my machine but have no idea where to find it. Is it possible to find it and read the back-up file without the original device being connected?

    I have a friend who I was helping out with his iPhone. He has since lost it. I believe I backed it up to my machine but have no idea where to find it. Is it possible to find it and read the back-up file without the original device being connected?

    If he gets another device - you should be able to restore it from your computer to the point where you backed it up
    Otherwise that file cannot be read

  • Can generate the TKPROF file without the SQL is not running completed ?

    Dear all:
    I want to generate the TKPROF file from the trace file, Can generate the TKPROF file without the SQL is not running completed ? Is it the TKPROF file can be used? because the report is too large. My environment is ORACLE 11.5.9
    Regards
    Terry

    When you can wait for completion, then that's the easiest route.
    When you can't wait, you'll have to use a different method. I suggest to watch the v$ views for what your session is doing. Views like v$session, v$session_wait, v$sess_io and the views starting with v$sql. Also worth mentioning is Tanel Poder's site, which contains some very useful scripts for diagnosing performance problems this way: http://tech.e2sn.com/.
    Regards,
    Rob.

  • How can I generate my own InDesign ePub file without the encryption.xml file?

    My bookstore (B&N) will not accept my ePub file because it doesn't want the file encryption.xml included. How can I generate an InDesign ePub file, for my own books, without it? Is there a check box somewhere? I've searched through the ePub export box and the file info boxes—no luck.
    Error message from B&N's PubIt.com:
    We have found a file name called encryption.xml within your ePub file container, which means that part of, or all of, your file is encrypted. We do not accept any encryptions within ePub source files. Upon closing this message, please remove the encryption.xml file from your ePub, and you may attempt to upload your ePub file again.
    If you wish to apply DRM to your title, go to Section 4, question H and select Yes. PubIt! will apply DRM to your title after you have uploaded your ePub file without encryption.
    Thanks for your help…

    Unfortunately you will find the option to uncheck "Embeddable Fonts" within ID CC 2014 only if you are creating an ePub with reflowable layout, but not if you are creating a "fixed layout" ePub.
    I went with the suggestion of the eCanCrusher and was pleasantly surprised how easy to use this free tool is. You basically just drag your ePub over the icon of the App and it creates a folder in which you find the encryption.xml within the META-INF folder. Once you erased it you drag the folder over the icon of the App and through this you will get a new encryption-free ePub which now passes iTunes Connect Book Proofer test.
    But then - opening the ePub without it's encryption within iBooks (on ipad) the text has moved, spaces between words are gone for no reason, words are even sticking into each other - it looks unacceptable! It does look OK on the iBook desktop app, however.
    My solution was to change the font from Myriad to Verdana. I had changed the fonts before, because - whatever font I had used - it's reproduction on the ipad was messed up, and Myriad was the first one that I tried that looked alright, though, not so much after removing the encryption.xml. Unfortunately everything changes when you change fonts within a fixed layout ePub and all line breaks have to be revised now...
    I also tried to remove the embedded fonts from inside the ePub, like someone else suggested, but that didn't help with the Book Proofer. It's really the encryption.xml that needs to be removed.
    I wish that I now finally can submit successfully to Apple and wish that Adobe would have a better relationship with Apple to solve issues like that.

  • Can I save data to a text file without the browser?

    Hello Everyone,
    I have a stand alone application that would run without a
    browser on desktop. I would like to write data to a text or
    database (MYSQL/PHP). Would it be possible for me to extend this
    functionality to a AS3 Stand Alone Application which would be
    strictly running on desktop?
    Appreciate your help.
    Thanks a lot.

    Look into AIR. It has more capabilities than Flash regarding
    to writing info to disk including an SQLite database.
    You can create AIR fils with the Flash and Flex IDEs.

  • Autosave file is in Plain Text, can't open

    I have my autosave folder on another computer at another location so I had my friend email me the autosave folder, only now I can't open them because they came over as plain text files. Is there a way to change them to fCP project files so I can open them in FCP?

    I just tried emailing a working autosave file to myself from MAIL and it worked fine, came through as final cut pro project file, but then I tried it again through safari and if came through as Plain Text. The guy at the other end told me he sent it from MAIL though, unless he was confused. Is there some setting in mail that would need to be changed to not convert the autosave file to plain text.

Maybe you are looking for

  • Service pack 13 of weblogic 5.1

    I Unzipped the contents of the service pack into a temporary directory, such as /temp then Shutdown the WebLogic Server then Copied weblogic510sp13.jar and weblogic510sp13boot.jar from /temp to the directory /weblogic/lib. After this,I added the path

  • When I click a link to a new page sometimes it opens an unrelated add page.

    just after we updated to Firefox4 it seems we picked up the "xp antivirus 2011" malware which seems resolved now however, about 30% of the time when clicking a link to a new page from either an current page or a search results page, what opens is an

  • Bapi's Dependency

    Hi Experts Can one bapi dependent on another bapi? Scenario: Suppose in one bapi some fields are there, at the time of using second bapi, second bapi requires some fields from the first bapi...in this situations how the bapis can be handled..please a

  • Input Check in Table Control

    A table control is created in screen painter and an internal table was used to store particular data in ABAP program. Information were entered into the table through ABAP program(insert value into internal table). The input check generated by data di

  • Pipeline in orchestration

    I want to call a send pipeline as part of orchestration I have found the following code to call the send pipeline as part of the orchestration. Microsoft.XLANGs.Pipeline.XLANGPipelineManager.ExecuteSendPipeline (typeof(Sample.EnvelopePipeline) ,Produ