Easy way to exchange Keys?

Hi, i got a message crypted with a blowfish algorythm and i want to send it with my key to another people. How can i do that easily. Are there functions in JCE that i can use to do it or must i use a Diffie-hellman exchange key scheme?
Thanks a lot.

Hi, i got a message crypted with a blowfish algorythm
and i want to send it with my key to another people.
How can i do that easily. Are there functions in JCE
that i can use to do it or must i use a Diffie-hellman
exchange key scheme?
Thanks a lot.Hi,
You'll obviously need some kind of asymmetric (public key) algorithm for key exchange, and the sender needs the recipient's key. If you don't want to use Diffie-Hellman, you might try RSA. You simply use the Cipher object in WRAP_MODE, initialized with the recipient's public key, and pass in the Blowfish key. The recipient then uses UNWRAP_MODE to pull out the Blowfish key and decrypt the message. Good luck.

Similar Messages

  • I'm trying to find an easier way to import my music to iTunes. Even the most basic music player can scan your computer and import found music into your library. I don't want to move my MP3s into the iTunes folder, I don't want iTunes doing any conversion.

    I'm trying to find an easy way to import my MP3 collection into iTunes without moving, copying or changing it.
    I can't believe that iTunes doesn't have this feature, as even the most basic music players always have this.
    I only use iTunes to sync my iPod, as I like Media Monkey to play my MP3s.
    I have 137GB of MP3s, mainly from my ripping my CDs, LPs and downloading from Amazon. I've only purchased a handful of songs from iTunes,
    Any ideas on how to do this easily?

    DAReese13 wrote:
    I can't believe that iTunes doesn't have this feature, as even the most basic music players always have this.
    It does have that feature. Why would you assume that it doesn't?
    DAReese13 wrote:
    I'm trying to find an easy way to import my MP3 collection into iTunes without moving, copying or changing it.
    Okay, no problem.
    If the top bar menu is not displayed in top left of your iTunes Library, use the CTRL+B keys to turn it on:
    On that menu, use File/Add Folder to Library and navigate to the folder you wish to add:
    If you wish to add just one song, notice the File/Add File to Library command on that menu as well.
    Alternatively, you can drag-and-drop from the file's location into your iTunes Library.
    That's all there is to it.
    By the way, it is possible to have Amazon MP3s downloaded to your computer and then automatically added to the iTunes Library by the Amazon downloader. I do it all the time.
    Message was edited by: the fiend

  • Easy way to remove a keyword from select images

    Is there an easy way to remove a keyword?
    I want to remove a single keyword from nearly 100 images that have multiple keywords. The single keyword I want to remove exists in other images that I don't want it removed from.
    Any ideas?
    Thanks!

    Create a keyword button set and then either use the menu option to remove that keyword or the shortcut key.
    RB

  • PSE10: Is there an easy way to add a vignette?

    Besides using Filter > Correct Camera Distortion, is there an easy way to put a vignette on a picture?  The method I just named doesn't give me the smooth, uniform fade that I need for creating collages, etc.  Thanks!

    Sure, just use any selection tool to make your selection.  Here, I simply used an elliptical selection:
    Then, use Select...Feather to feather the selection.  I used 10px.  Hit the Ctrl+J keys to copy that feathered selection to a new layer with a transparent background:
    Ken

  • Is there an easy way to find out if a user has a message in their voicemail.

    Is there an easy way to find out if a user has a message in their voicemail from the
    UNITY subscriber page? Or anywhere I can look to see if they do.  I don't have access to the exchange servers.  We are currently running UNITY 5.0(1).  thanks

    The only way you'll be able to do that is to login to Outlook Web Access, or possibly setup an IMAP client to that user's mailbox or have TAC run the DohPropTest in attach mode to return the contents of the user's inbox.  If the first two don't work, I'd go with the latter and let TAC help you verify if there are any messages in the inbox that are unread.
    Hope that helps,
    Brad

  • I'm using apple's bluetooth keyboard and I need an easy way to switch between the text and numbers fields instead of tapping on the screen

    I'm using apple's bluetooth keyboard and I need an easy way to switch between the text and numbers fields instead of tapping on the screen

    While not in edit mode:
    - if start typing numbers, then it enters number mode.
    - if start typing text, then it enters text mode.
    Using the arrow keys exits edit mode. So this should work for you:
    1 Type text into a cell, which enters text mode.
    2 Press Return to move to the next cell.
    3 Press right arrow key to exit edit mode.
    4 Press left arrow key to get back to the cell.
    5 Type a number, which enters number mode.
    Another method that requires more planning ahead of time is to format the cells as text or number before starting the data entry. Then when you navigate to a cell while in edit mode, you will be in the appropriate mode (without having to exit edit mode).
    This all works fine for me. Hopefullly it does for you also.

  • Buttons in AS3.0... is there an easier way?

    I am wondering if there is an easier way to create buttons in
    3.0... I want to make an e-publication in 3.0 but am finding most
    of the actions easier to do in 2.0. Should I generally use a
    combination of these AS versions or am I missing something with
    this endless array of 3.0 options? I am having troubles adapting to
    the whole applying an action to a frame rather than button thing...
    I have downloaded all the terminology from Adobe so that I can get
    better adjusted, but it's always nice to read feedback from a real
    person explaining a few simple things to me... links or comments
    much much much appreciated!!!

    cdbsoccer63,
    vvirgill's answer is good, because it shows how easy AS3
    buttons can be.
    In fact, the nice thing about ActionScript 3.0 is that nearly
    all event
    handling is this easy, becuase nearly all of it is performed
    the same way.
    That is ...
    someObject.addEventListener(
    <an event to listen for>,
    <what to do when the event occurs>
    You can put that all on one like, like vvirgill showed, or
    broken over
    several lines, like I just showed with my own example. My
    example isn't
    literal code, so it wouldn't work if you typed that into the
    Actions panel.
    Like vvirgill did, you'd have to replace the <an event to
    listen for> part
    with the name of some event. For buttons, one of them is
    "click", which
    appears in quotes because it's a string (text). Then you'd
    replace the
    <what do do ...> part with the name of some function,
    such as myListener(),
    onClick(), or honestly, whatever name you like. I often use
    clickHandler(),
    but it doesn't matter, so long as the function name makes
    sense to you (a
    descriptive name is usually a good choice, such as
    submitForm() or
    orderPizza()). When you refer to your function as a parameter
    inside the
    addEventListener() method, you leave the parentheses off the
    function,
    because it's the parentheses that actually make the function
    do its thing.
    You don't want to trigger the function inside that
    addEventListener()
    method, but rather, in response to whatever event you'r
    listening for.
    So ... how do you know what events are valid for buttons --
    or anything
    else, for that matter? Look up the class entry for the object
    you're
    dealing with. If you're dealing with button symbols, look up
    the
    SimpleButton class. For movie clip symbols, look up the
    MovieClip class.
    For text fields, the TextField class, and so on. Each class
    entry -- in
    this case, in the ActionScript 3.0 Language and Components
    Reference (F1
    key) -- generally has three categories: Properties
    (characteristics of the
    object), Methods (things the object can do), and Events
    (things the object
    can react to). You'll find relevant events under the Events
    heading, as you
    can imagine. Many classes inherit frunctionality from other
    classes, so
    always make sure to click the hyperlink that says "Show
    Inherited
    Properties/Methods/Events" near each heading.
    The documentation will show you things a bit differently
    than vvirgill
    showed. Instead of "click", for example, you'll find sample
    code that shows
    you MouseEvent.CLICK. Don't be thrown by that. All that means
    is that the
    "click" string is stored as a constant (an unchanging
    variable) of the
    MouseEvent class. You can reference that string by referring
    to the
    contstant, like this:
    myButton.addEventListener(
    MouseEvent.CLICK,
    clickHandler
    According to best practices, you should do it like that
    (it's the more
    "proper" way to go about it), but in the end, all that
    contsant does is
    point to the string "click", so they ultimately mean the same
    thing.
    Nearly every time, if an object has an event, you'll be able
    to wire up
    an event listener the same way youv'e seen now in this
    thread. The only
    exceptions I can think of are related to video (cue points
    and status
    messages, I think) -- but for everything else ...
    myObject.addEventListener(someEvent, someHandler);
    ... and then, of course, you have to write out that what
    "someHandler" is.
    As vvirgill demonstrated, that's easy to. You need a function
    declaration,
    and then the code you want performed, and that's really all
    there is to it.
    You do have to write the function to accept one parameter:
    function myFunction(param:Event):void {
    ... which I called param in that snippet (vvirgill called it
    e). That
    parameter gives you optional access to the event itself, and
    the *type* of
    parameter it is depends on the type of event that triggers
    the function.
    Strictly speaking, the MouseEvent.CLICK event is an instance
    of the
    MouseEvent class (just like button symbols are instances of
    the SimpleCutton
    class, movie clips are instances of the MovieClip class, and
    so on). So
    ideally, that parameter should be typed as MouseEvent rather
    than Event:
    function myFunction(param:MouseEvent):void {
    ... but only when the function is triggered in reponse to a
    mouse click
    (that is, a MouseEvent). Makes sense, right? The reason
    vvirgill's example
    isn't wrong is because the MouseEvent class inherits some of
    its
    functionality from the Event class, so mouse event objects
    actually *are*
    event objects -- the identification as such is true -- but if
    you're
    adhering to Adobe recommendations, you'll type your
    parameters (and all
    variables) specifically.
    David Stiller
    Co-author, Foundation Flash CS4 for Designers
    http://tinyurl.com/5j55cv
    "Luck is the residue of good design."

  • How to set 2 points on each other in diffrent layers in easy way

    Free transform, rotate, adjust angle and resize with fixed ratios;  these are the steps I use to to set point A on 1 and point B on 2 every time, is there an easy way to do this metion ?
    please se the attached picture will help to explain what im doing and what I need..
    Thanks

    Set the top layer so it's 50% transparent, then you can still see it but you can also see through it to be able to visually see when it's lined up.
    You can move it around and rotate it with the Edit - Free Transform tool, and you can zoom in close while that tool is active by using the Ctrl + and Ctrl - keys to change the zoom.  Get one point lined up, put the center of rotation (little crosshair) on that point, then rotate the image to line up with the other point.
    Fine tuning can be done with the numeric values, available in the top part of the main Photoshop window when the Free Transform tool is active.  Photoshop CS5 now allows you to specify an unprecedented level of accuracy.  For example, 1/100th of a degree (or possibly smaller).
    -Noel

  • I have a new macbook pro and want to transfer my Mail autofill from my old mac. Never used Time Machine or Migration Assistant -- looks complicated. Any easy way to do this?

    I have a new macbook pro and want to transfer my Mail autofill from my old mac. Never used Time Machine or Migration Assistant -- looks complicated. Any easy way to do this?

    caitlinfromcambridge wrote:
    Thanks -- I would like to try this. I do not know how to reach hard drive from old mac to new. Can you help me with this?
    There are two ways - you can boot your old Mac in Target Mode (reboot your Mac, and as soon as you hear the startup chime hold down the T key on the keyboard until you see the yellow/orange Firewire logo on screen).  You can then use a FireWire cable to connect your new mac to your old one.  The old Mac hard drive will appear on your new Mac as if it is an external hard drive.
    Details on Target Disk Mode:  http://support.apple.com/kb/ht1661
    If you don't have a firewire cable but you do have a home network (i.e. both computers can access the Internet at the same time), you can share the hard drive on your old Mac and then connect to it on your new Mac.
    Good article on sharing your hard drive:  http://support.apple.com/kb/HT1549
    Finally, if the above doesn't thrill you, you can hook an external drive to your old Mac, copy the mail folder over to it, then connect the external drive to your new Mac and copy it over.  It's two steps, but if you don't have a firewire cable and aren't comfortable with sharing over a network it will work just as well - you just have to wait for the mail folder to copy twice instead of once.
    If you get stuck post back!

  • Is there an easy way to import those misfortunate photos back into iphoto

    I moved my iphoto library to my external drive so that both my laptop and imac can use the synced photo library.
    ... but now my imac iphoto says I can not open my iphoto library, because is from a newer version of iphoto. And the application then closes.
    I figured out my newer laptop has a newer version of iphoto on it.
    Imac iphoto version is 6.0.6
    Laptop iphoto version s 7.1.5
    I Downloaded iPhoto Library Manager and use its rebuild function. This created a new library but says a lot of my pictures are lost. I can search and find them on my external drive and reimport, but there are a lot of them! Any suggestions?
    I'd rather use the 6.0.6 on my imac than pay for an upgrade.
    I just won't use my laptop's iphoto.
    BUT, how can I get my 6.0.6 working again with all of my pictures in tact? Or is there an easy way to import those misfortunate photos back into iphoto painlessly?
    Any other solutions??
    Will Snow Leopard have the newest iPhoto included?
    Thank you!
    Kim

    Kim
    If you want to revert to iPhoto 6 then you have two choices:
    1. Restore from your back up
    or
    2. Create a new v6 Library and start over.
    To create and populate a new *iPhoto 6* library:
    Note this will give you a working library with the same Rolls and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Create Library'.
    Go into the Old iPhoto Library (Right Click on the Library Icon and choose ‘Show Package Contents) and find the Originals folder. From the Originals folder drag the individual Roll Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the old iPhoto Library.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.
    “Snow Leopard” is an OS Upgrade. While we have no idea what will be included with it, on past experience, no, it will not include a new version of iPhoto.
    Regards
    TD

  • Mark Clip - X shortcut doesn't work for some reason. Is there an easy way to mark a clip without going into Source Monitor?

    Hi guys,
    I'm using Premiere Pro CC on Windows 8.1 Pro. The Mark Clip function - X shortcut key by default doesn't seem to work.
    I know that if I go into Source Monitor I can mark the clip in there but WHY ? In the old day of CS5.5 I can mark a clip (not timeline) as quick indicator for frame / sound issue of a particular clip. One key press and I'm done.
    So, is there an easy way to mark a clip in Premiere Pro CC without going into Source Monitor?
    Cheers!

    Hi Mark and everyone looking to find the answer,
    After experimenting, I figured out the answer. This applies for the latest version of Adobe Premiere Pro CC (as of 01-Sep-2014) ver 8.0.1 (build 21)
    Context: You want to add a marker to a specific clip instead of a sequence but you can't seem to do it.
    Why?
        - X key (or Mark Clip as Premiere Pro CC calls it) doesn't add a Marker to a clip. What it does is using the clip you are selecting as reference for Mark In / Out of your current sequence.
        - M key (or Add Marker as Premiere Pro CC calls it) will add a marker to your clip.
       HOWEVER:
        If you are not expanding your clip to see the wave form or clip thumbnail, the marker on the clip will not show up. It used to show up in CS5.5!!!!!! Why not in CC!!!?!
        It will only add the marker to the clip you are selecting. Track targeting does not matter.
        If you don't select any clip, it will add a marker to your sequence.
    Example: (This is the same clip and sequence)
    How it looks with marker added.
      Track targeting does not matter - reference number 1
      Current selected clip is is the key - reference number 2
        2.  How it looks with marker added but you can't see
        3.  How it looks if you don't select the clip and hit M
    Hope this help!
    Cheers!

  • Any easy way to mark items (many) as read? Seems odd you have to check 100 little boxes

    Looking for easy way to mark ALL items as read or mark ALL items to delete. Checking a million circles is lame.

    Lame as it may seem, that's how it works in iOS land.  If you have the same mailboxes on your computer and if they're set up as IMAP or Exchange, you can go on your home computer and mark them as read and by virtue of being exchange, they will show as read on your iPad.

  • Easy way to switch to Windows partition?

    It seems to be much easier to boot to SL from the Windows partition (because of the icon in the sys tray) than to go the other direction. The only way I have found to boot to Windows from SL is to restart with the options key depressed and select the Windows hard drive. Since I'm a Mac noob I'm betting there's an easier way that I don't know about. Any suggestions?

    On a related note, I can't get my Mac Pro to boot the windows side at all with SL installed. I used the Disk Utility to look at the partitions, it says there are two. I installed Windows XP when I was using Mac 10.5 using the Boot Camp Assistant, no problems then, but no I can't get there from here. Holding the option key and restarting gives me only the Mac option. I went to Startup Disk as suggested and if offers me only Mac OS X,10.6 on Macintosh HD and a question marked icon labeled Network Startup. Any ideas on what's happened to my Windows partition?

  • Is there an easy way to fetch next/previous record in Apex?

    I am new to APEX/Oracle, but have a lot of expierence as a mainframe programmer and some experience with SQL.
    I have been tasked by my boss to create a set of pages in an application as follows.
    Page 1: Select an Employees Name and go to Page 2.
    Page 2: Display Employee's Biography Information.
    Add a "Next Employee" button and a "Previous Employee" button that will fetch the next/previous Employees Biography info respectively.
    In essence, he wants a query with every employee's biography information with the employee selected on page 1 used as the starting pointer.
    I have successfully built "select an Employee's name on page 1" and "display his/her info on page 2" with a query that returns a single record.
    What I can not figure out is how to get a next and previous button to get the next or previous record in a multi record query, using the intially selcted employee as the intial pointer.
    Is their an easy way to build this using built-in APEX functionailty, or will it require programming to achieve this requirement?

    Bob,
    I installed the Aria application, but now I wish I'd run the preview first. It's a cool application, but I don't see anything like what greich requested. I'm looking for the same thing.
    <ol>
    <li>     and clicked the Edit or View Details button for an individual. </li>
    <li>That takes me to a custom Form page that shows one person. </li>
    </ol>
    I'm trying to imagine how I'd code buttons for that Form page to let me click to see the next or previous person on that same form. My mind gets totally boggled when I consider that the user might have filtered the report to only show a few records. How do I have any idea what those IDs were and what order they were showing in, to know which is the next individual.
    My only thought it to create a process on the report that could save primary key (e.g. employee ID) to a table or Apex collection? Then the form button runs a process that finds the current ID then uses next or previous?
    I'm not sure how I could capture the PK in the report in order to save it.
    Does this make sense? Anyone got a better idea?
    Thanks,
    Stew

  • My MacBook Pro is suddenly slower...is there an easy way to check for viruses?

    My MacBook Pro is suddenly slower...is there an easy way to check for viruses?

    OpsMgr have methods which can get all host classes. Here my own function which can solve your issue:
    function Get-SCOMClassProperty {
    param(
    [Microsoft.EnterpriseManagement.Configuration.ManagementPackClass]
    [Parameter(Mandatory = $true)]
    $ManagementClass,
    [Switch]
    [Parameter(Mandatory = $false)]
    $KeyOnly
    function Get-SCOMClassKeyProperty {
    param(
    $ManagementClass
    $ManagementClass.PropertyCollection | ? {$_.Key}
    If ($ManagementClass.Hosted) {
    Get-SCOMClassKeyProperty -ManagementClass $ManagementClass.FindHostClass()
    If ($ManagementClass.Base) {
    Get-SCOMClassKeyProperty -ManagementClass (Get-SCOMClass $ManagementClass.Base.Id)
    function Get-SCOMClassAllProperty {
    param(
    $ManagementClass
    $ManagementClass.PropertyCollection
    If ($ManagementClass.Base) {
    Get-SCOMClassAllProperty -ManagementClass (Get-SCOMClass $ManagementClass.Base.Id)
    $ManagementClassProperty = Get-SCOMClassKeyProperty -ManagementClass $ManagementClass
    If (!$KeyOnly) {
    $ManagementClassProperty += Get-SCOMClassAllProperty -ManagementClass $ManagementClass
    $ManagementClassProperty | Select-Object -Unique
    If you need to do it in SCOM 2007 R2 then you can try my scripts from this examples http://systemcenter4all.wordpress.com/2013/05/15/scom-monitoringclass-functions/. Last should work in 2007 R2 and in 2012. Example in thread will work only in 2012.
    For example just run command:
    New-SCOMManagementGroupConnection
    $ManagementClassName = "Microsoft.SQLServer.Database"
    $ManagementClass = Get-SCOMClass -Name $ManagementClassName
    Get-SCOMClassProperty -ManagementClass $ManagementClass -KeyOnly | select Name
    Vladimir Zelenov | http://systemcenter4all.wordpress.com

Maybe you are looking for

  • Performance Counter in Solaris

    I need to use the CPC API to get the instruction counter of my program execution at certain points with in the execution. Can anyone suggest some help on understanding and implementing the CPC API for this thanx

  • Toshiba LED ?????'s

    First off thanks for everyones help so far.  I have returned 2 tv's already and i dont want to return another.  I had decided on the Samsung PN51D530A3 but i cant find one at any local BB and cant even order it online.  I then decided to go for the I

  • Importing pdf form into Excel 2007 gives me a blank form

    Howdy.  I am using Excel 2007 and I choose Insert - Object - Adobe Acrobat Document. When the pdf is inserted I see the form but every field is now blank. I am using Adobe Reader X to review the forms I receive. I do not know when version the origina

  • Toolbar buttons do not work and are greyed out not allowing me to log in or log out

    I have increasingly been frustrated with firefox not allowing me to log in and or log out of important websites in which i pay my bills online This happens because the toolbar buttons are greyed out. It makes this feature non functional, therefore I

  • Login page keeps going to "Create new user account" on login

    For about 3 weeks, whenever I log in, the next page I get is nearly always the "Create new user account" page. This happens regardless of whether I wait to let AutoFill enter my user name and password or whether I fill in the correct info myself. Whe