Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Remove VI encryption key from file Post 302430721 by Scott on Friday 18th of June 2010 12:41:35 PM
Old 06-18-2010
Hi.

Use:

Code:
:set key=

then save the file.

PS: Thread renamed. Do not use "Urgent" as a thread subject, thank you.
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

File encryption/Key encryption ????

My dilemma, I need to send, deemed confidential, information via e-mail (SMTP). This information is sitting as a file on AIX. Typically I can send this data as a e-mail attachment via what we term a "mail filter" using telnet. I now would like to somehow encrypt the data and send it to a e-mail... (1 Reply)
Discussion started by: hugow
1 Replies

2. UNIX for Dummies Questions & Answers

VIM: Encryption key.

I'm having one doubt about the VIM ENCRYPTION key. I having a text file, I encrypted that file using :X vim -x filename Now, where the encrypted key is stored (path). Whether it stored in a separate file or the text file itself. If I open a the file it asked Encryption key. How it compare... (1 Reply)
Discussion started by: ungalnanban
1 Replies

3. Shell Programming and Scripting

remove 1st and last last values of a key

For every specific keys i.e. 1st and 4th columns (a1 and ABC_001144992) remove 1st and last value (bold ones - 87942437 and 87952030 ) and print remaining input a1 87942437 87943147 1E ABC_001144992 a1 87945162 87945276 2E ABC_001144992 a1 87949524 87952030 3E ABC_001144992 a1... (3 Replies)
Discussion started by: repinementer
3 Replies

4. Shell Programming and Scripting

Remove duplicates based on the two key columns

Hi All, I needs to fetch unique records based on a keycolumn(ie., first column1) and also I needs to get the records which are having max value on column2 in sorted manner... and duplicates have to store in another output file. Input : Input.txt 1234,0,x 1234,1,y 5678,10,z 9999,10,k... (7 Replies)
Discussion started by: kmsekhar
7 Replies

5. Linux

It is possible to find out when a particular encryption key was imported in linux

Hi All, In linux server some encryption keys were imported using gpg command. I want to know when those keys was imported. Is there any way to get when the encryption keys were imported? Thanks in advance.. :rolleyes: (1 Reply)
Discussion started by: latika
1 Replies

6. Shell Programming and Scripting

Remove Duplicates on multiple Key Columns and get the Latest Record from Date/Time Column

Hi Experts , we have a CDC file where we need to get the latest record of the Key columns Key Columns will be CDC_FLAG and SRC_PMTN_I and fetch the latest record from the CDC_PRCS_TS Can we do it with a single awk command. Please help.... (3 Replies)
Discussion started by: vijaykodukula
3 Replies

7. Cybersecurity

File encryption tools with MAC address as an encryption key

Hi all, I'm looking for secure file encryption tools that use MAC address as encryption key. FYI, I'm using Red Hat Enterprise Linux OS. For example: when A wants to send file to B A will encrypt the file with B's computer MAC/IP address as an encryption key This file can only be decrypted... (2 Replies)
Discussion started by: sergionicosta
2 Replies

8. UNIX for Advanced & Expert Users

Private and public key encryption

Hi, we have private and public key, encrypt file using public and want to decrypt using private key. can you please advise below commands are correct or other remedy if unix have? encrypt -a arcfour -k publickey.asc -i TESTFILE.csv -o TESTFILE00.csv decrypt -a arcfour -k privatekey.asc... (2 Replies)
Discussion started by: rizwan.shaukat
2 Replies

9. Shell Programming and Scripting

Remove first meta key from json records using shell

Hi All, I need to get rid of initial meta key from json files with enclosed parenthesis from start and end of the lines which has total 4000 lines. here is the sample Json records : {"start": true, "meta": {"name": "xyz", "creation": "2017-07-14T16:20:06.000+02:00"}} I need to remove... (7 Replies)
Discussion started by: Cloud_Ninja
7 Replies
tis(3)							     Library Functions Manual							    tis(3)

NAME
tis, tis_intro - Introduction to Thread-Independent Services (tis) DESCRIPTION
Thread-independent services (tis) routines compose a Compaq-proprietary interface to the DECthreads multitasking library. The tis inter- face provides services that assist with the development of thread-safe libraries. Thread synchronization can involve significant run-time cost, which is undesirable in a nonthreaded environment. In the nonthreaded envi- ronment, the tis interface enables you to build thread-safe libraries that are efficient, yet provide the necessary synchronization when called from a threaded environment. When threads are not active within the process, tis routines execute only the minimum steps necessary: code running in a nonthreaded envi- ronment is not burdened by the run-time synchronization that is necessary when the same code is run in a threaded environment. When threads are active, tis routines provide the necessary thread-safe synchronization. The tis objects created using this interface are fully interchangeable with DECthreads Pthreads (POSIX 1003.1c) objects. So, a mutex can be created by using static initialization (or using tis_mutex_init(3)) and can be locked, the DECthreads core library (libpthread.so) sub- sequently activated, and the mutex unlocked. Keys created by tis_key_create(3) are valid when a threaded run-time environment is loaded. Note that errno is NOT used by the tis routines. To indicate errors, the tis routines return integer values indicating the type of error. In a nonthreaded environment, condition variables should not be used to guard operations (for example, with tis_cond_wait(3)). In a threaded environment, the guidelines for using the DECthreads Pthread routines also pertain to the use of the corresponding tis routine. The tis routines can be classified into the following associated groups: General routines Thread cancellation routines Thread-specific data key routines Mutex routines Condition variable routines Read-write lock routines General Routines Obtains a value representing a desired expiration time. Calls a one-time initialization routine that can be executed. Obtains the identi- fier of the calling thread. Thread Cancellation Routines Changes the calling thread's cancelability state. Creates a cancellation point in the calling thread. Thread-Specific Data Key Routines Obtains the data associated with the specified thread-specific data key. Generates a unique thread-specific data key. Deletes a thread- specific data key. Sets the value associated with the specified thread-specific key. Mutex Routines Locks the DECthreads global mutex. Destroys the specified tis mutex object. Initializes a tis mutex object. Locks the specified tis mutex if not already locked. Tries to lock the specified tis mutex. Unlocks the specified tis mutex. Unlocks the DECthreads global mutex. Condition Variable Routines Wakes all threads waiting on the specified condition variable. Destroys the specified condition variable object. Initializes a condition variable object. Wakes at least one thread that is waiting on the specified condition variable. Causes the calling thread to wait for the specified condition variable to be signaled or broadcast, such that it will awake after a specified period of time. Causes the calling thread to wait for the specified condition variable to be signaled or broadcast. Read-Write Lock Routines Acquires the specified read-write lock for read access. Attempts to acquire the specified read-write lock for read access; returns immedi- ately if already locked. Unlocks the specified read-write lock already acquired for read access. Destroys the specified read-write lock object. Initializes a read-write lock object. Acquires the specified read-write lock for write access. Attempts to acquire the specified read-write lock for write access; returns immediately if already locked. Unlocks the specified read-write lock already acquired for write access. delim off delim off tis(3)
All times are GMT -4. The time now is 09:24 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy