How to provide parameter to an encryption algorithm using PeopleSoft PET

Hi, using the PET (pluggable encryption technology) framework. how can we provide parameter values to an encryption algorithm where this algorithm itself is a parameter?
For eg., for pkcs7_encrypted_encrypt algorithm (openssl), PeopleBooks (for pt8.51) shows that the second parameter is a symmetric algorithm. But this symmetric algorithm expects 2 parameters. But how can we provide these parameters while creating the encryption profile?
Any information will be a great help!!
Regards
Srini P

Hi,
Any help, suggestions on this will really help.
Thanks
Srini

Similar Messages

  • How the sContainerLocation parameter has been set and used?

    Hi,
    I'm confused with the following 2 methods in IContainerProvider Interface (Java EDK5.0):(1) public IContainer attachToContainer(String sContainerLocation, ChildRequestHint oHint, String Locale);(2).public ChildContainer[] getChildContainers();
    I'm not sure how the sContainerLocation parameter has been set correctly for the top lever container and the sub level (child containers). What i intended to do is crawl all documents (all have a unique ID) into Plumtree portal. I plan to set the parent folder ObjectID as a datasource parameter. Can anyone please tell me how to use the "parent folder ObjectID" in those 2 methods.
    Thanks in advance,

    Mihir,
    For the top-level container, set parent folder Object ID equal to CrawlerConstants.TAG_PATH. I've only configured this via a custom SCI page in the Crawler admin object, so I'm not sure if it will work as a setting in the Data Source as you wish to do. You can try it in the data source and if it doesn't work, then try it in the Crawler. When set correctly, the portal will automatically call attachToContainer with sContainerLocation equal to whatever value you have for TAG_PATH.
    For child containers, just set the sLocation in the ChildContainer equal to the folder ObjectID and the portal will use that as the value for sContainerLocation on its subsequent attachToContainer calls.
    -Dave
    I've set this in the crawler UI, and I'm not sure if it will work in the data source.

  • Encryption algorithms used in SQL Compact Edition 3.5

    Hi,
    In the info for SQL Compact Edition 3.5 it states that one of the features is:
    Support for newer and more secure encryption algorithms.
    I can't seem to find details of exactly what these new, more secure algorithms are. It appears 3.1 used 128-bit RSA. Is this the same in 3.5, or has this changed?
    Thanks

    The official word is now out here: http://209.34.241.67/laxmi/archive/2008/04/15/sql-server-compact-database-file-security.aspx

  • How to pass parameter between two jsp pages using web link (not form)

    Hi Friends,
    I have two jsp pages and would like to pass a parameter from one JSP page (one.jsp) to another JPS page (two.jsp)
    in one.jsp
    <a href="two.jsp?ant="<%=ant%">"> <%=antName%> </a><br>
    I don't know how to pass value of parameter "ant" to two.jsp from one.jsp.
    Can anyone help this? Thank you in advance</a>

    Looks like you've got it almost right - just an extra unneeded "
    <a href="two.jsp"?ant=<%= ant %>"><%=antName%></a>
    which should render on the page as something like
    My Ant Task
    When you click the link, it should pass that parameter, and you can get it via request.getParameter().

  • What is the encryption algorithm used in cwallet.sso

    HI,
    I am using Webcenter External Application feature to store psswords. I would like to know more information abut the default file based credential store
    What is ecryption methodlogy used in cwallet.sso or anyther file used for creating a credetial store map in Webcenter
    This information is needed for our client security team. I appreciate your help
    Thanks
    Sam

    Before you can answer that question, you have to answer the question "what is the zip format"? It is a trick quesetion. There has never been such a thing. Zip was invented by the proverbial "some dude" (Phil Katz) who was a good at coding. The Zip format was never standardized so there is really no such thing as a zip file. There are many zip variants that use different forms of encryption.
    The original zip encryption was a homemade algorithm written by Roger Shalfly. He has a PhD in math but this was an early attempt before the field was mature and people starting giving names to individual algorithms. Here is some information about the original zip encryption: http://cs.sjsu.edu/~stamp/crypto/PowerPoint_PDF/8_PKZIP.pdf
    And here is a paper about one particular Zip variant: http://eprint.iacr.org/2004/078.pdf

  • How do I open an excel encrypted file using numbers?

    I have a USB memory stick that contains an .xlsx that is encrypted. I have the password. Can I open it with numbers?
    Thanks.

    No.
    Regards,
    Barry

  • How to pass parameter to a search engine using URLConnection

    Hello Friends,
    I have written a very simple method for prrof of concept.
    It does return value from the server but the value it returns is "501 not implemented"
    instead of the search results related to the parameter I pass.below is the code
    public GoogleSearchMain() {
    String urls = "http://www.google.ca/";
    try{
    URL url = new URL(urls);
    URLConnection connection = url.openConnection();
    connection.setDoOutput(true);
    System.out.println("url opened and ready to be written at.");
    //send search message
    PrintWriter pout = new PrintWriter(connection.getOutputStream());
    pout.println("search?q="+"New York");
    pout.close();
    BufferedReader in = new BufferedReader(     new InputStreamReader(connection.getInputStream()));
    String line="";
    while((line=in.readLine())!=null){
    System.out.println(line);
    }catch(MalformedURLException mfe){
    System.out.println("MALFORMED URL : "+mfe.getMessage());
    }catch(IOException ioe){
    System.out.println("IOEXception : "+ioe.getMessage());
    can some one please guide me where I am missing and what?
    thanks

    Read some of these
    http://search.java.sun.com/search/java/index.jsp?and=google+search+url&phr=&qt=&not=&field=&since=&nh=10&col=javaforums&rf=0&Search.x=15&Search.y=7

  • How to provide f4 help

    Hi guys,
      here i amproviding some sample code.
    requirement is uploading data from xl to internal table.
    problem is how to provide f4 help for file name.
    using cl_gui_frontend_services.
    type mismatching is occuring.
    DATA:  wa_filename1 TYPE file_table,        "for method
           wa_filename2 TYPE rlgrap-filename,   "for function module
           wa_data TYPE alsmex_tabline.
    DATA:    t_data TYPE STANDARD TABLE OF alsmex_tabline.
    DATA:      file_count TYPE i.
    selection-screen begin of block bk1 with frame title text-001.
    parameters:p_fname type char10.
    selection-screen end of block bk1.
    at selection-screen on value-request for p_fname.
    Method to get filename
    CALL METHOD cl_gui_frontend_services=>file_open_dialog
      EXPORTING
        window_title            = 'Excel file name'
      CHANGING
        file_table              = P_fname
        rc                      = file_count
      EXCEPTIONS
        file_open_dialog_failed = 1
        cntl_error              = 2
        error_no_gui            = 3
        not_supported_by_gui    = 4
        OTHERS                  = 5.
    start-of-selection.
    LOOP AT p_fname INTO wa_filename1.
      wa_filename2 = wa_filename1.
    To upload excel to internal table
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          filename                = wa_filename2
          i_begin_col             = 1
          i_begin_row             = 1
          i_end_col               = 2
          i_end_row               = 88
        TABLES
          intern                  = t_data
        EXCEPTIONS
          inconsistent_parameters = 1
          upload_ole              = 2
          OTHERS                  = 3.
    *ENDLOOP.
    u can expect more rewards.

    my code sample:
    REPORT  zcobkk01.
    * INCLUDES                                                             *
    INCLUDE zcobkk01top.
    * SELECTION-SCREEN                                               *
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETER p_file TYPE string OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK b1.
    * AT SELECTION-SCREEN                                                          *
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CLEAR it_file.
      CLEAR v_rc.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
          window_title            = 'title here'
          initial_directory       = 'C:'
        CHANGING
          file_table              = it_file
          rc                      = v_rc
        EXCEPTIONS
          file_open_dialog_failed = 1
          cntl_error              = 2
          error_no_gui            = 3
          not_supported_by_gui    = 4
          OTHERS                  = 5.
      IF sy-subrc EQ 0.
        READ TABLE it_file INDEX 1 INTO p_file.
      ENDIF.
    * START-OF-SELECTION                                                   *
    START-OF-SELECTION.
      PERFORM load_file USING p_file
                             CHANGING it_return.
      IF it_return IS NOT INITIAL.
        PERFORM validate_data USING it_return
                              CHANGING  it_input
                                        it_err.
        PERFORM display_err CHANGING it_err.
      ELSE.
        WRITE: 'Error'.
      ENDIF.

  • Encryption algrothim used for Password reset question and answer

    We are trying to write a custom interface to the Password reset service.
    The interface is supposed to allow the user to enter a question and answer, then using SAM SDK write the value to the iplanet-am-user-password-reset-question-answer.
    The problem is SAM saves the values encrypted, so do any one know the encryption algorithm used and what is key or they are specified.
    Thnaks

    Only you and Apple know your secret question.  See if changing the password via email will allow access to your account.. Then you can chnag yur secret question. See:
    http://support.apple.com/kb/HE36

  • How to provide hyperlink for a particular field in ALV

    Hi,
      How to provide hyperlink for a particular field in alv report.
    Regards,
    Ramu.

    Yes you can do that. using the fieldcatalog there is an option for that. give HOT_SPOT = 'X'. for the column you want.
    wa_field-hotspot = 'X'.
    REPORT  ztest_alv.
    TYPE-POOLS:slis.
    DATA:it_fieldcat  TYPE  slis_t_fieldcat_alv,
         wa_field LIKE LINE OF it_fieldcat.
    DATA: BEGIN OF it_likp OCCURS 0,
           vbeln TYPE likp-vbeln,
          END OF it_likp.
    DATA: layout TYPE slis_layout_alv.
    wa_field-fieldname = 'VBELN'.
    wa_field-tabname = 'IT_LIKP'.
    wa_field-hotspot = 'X'.
    wa_field-outputlen = 10.
    wa_field-no_zero = 'X'.
    wa_field-seltext_l = 'Sales'.
    APPEND wa_field TO it_fieldcat.
    SELECT vbeln FROM likp
    UP TO 10 ROWS
    INTO TABLE it_likp.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program      = sy-repid
        is_layout               = layout
        i_callback_user_command = 'USER_COMMAND'
        it_fieldcat             = it_fieldcat
      TABLES
        t_outtab                = it_likp
      EXCEPTIONS
        program_error           = 1.
    *&      Form  user_Command
    *       text
    *      -->UCOMM      text
    *      -->SELFIELD   text
    FORM user_command USING ucomm TYPE sy-ucomm
                        selfield TYPE slis_selfield.
      CASE ucomm.
        WHEN '&IC1'.
          SET PARAMETER ID 'VL'  FIELD selfield-value.
          CALL TRANSACTION 'VL02N' AND SKIP FIRST SCREEN.
      ENDCASE.
    ENDFORM.                    "user_Command

  • How to Pass parameter to Custom Scheduler dynamically

    hi ,
    I am new to OIM.
    Need your help in passing parameters dynamically to Custom Scheduler.
    I have created Custom Scheduler by extending Task Support.
    I have registered the plugin through API , using PlatformService.registerPlugin() method.
    As I need to send the parameter(s) to this CustomScheduler, I have defined them in Metadata (CustomScheduleTask.xml) file as below and got it imported into DB
    through weblogicImportMetadata.sh script by providing the path of the file.
    <scheduledTasks xmlns="http://xmlns.oracle.com/oim/scheduler">
    <task>
    <name>CustomScheduleTask</name>
    <class>org.schedule.custom.task.CustomScheduleTask</class>
    <description>Fetch details of the given user_id</description>
    <retry>5</retry>
    <parameters>
    <string-param required="true" helpText="Login Name">Login Name</string-param>
    </parameters>
    </task>
    </scheduledTasks>
    Iam able to import this plugin as well as register the plugin successfully. Now I have defined a job to which this Custom SchedulerTask is mapped.
    Now in order to run this job(schedule task) I need to provide Login name( or id) which needs to be send as a parameter for the scheduler to get executed.
    But while defining the job with this Schedule Task on OIM console, I was not able to define or pass parameter to this job. hence parameter is null in
    CustomSchedule 's execute method .
    Kindly help me how to pass parameter dynamically while running the scheduler from OIM console so that the execute method would be able to receive it.
    Thank you in Advance.
    Regards,
    Kumar

    Hi,
    When you have created the schedule job for your custom schedule task, you should see your Login Name textfield in the schedule task. If not, then there verify your schedule task xml.
    In your schedule class code, add:
    public void execute(HashMap arg0) {
              final String METHOD_NAME = "execute :: ";
              logger.debug(CLASS_NAME + METHOD_NAME + "Entering Method - execute");
              try {
                   String LoginName = arg0.get("Login Name");
    Regards,
    Sunny

  • How to pass parameter to the Query String of the Named Queries'SQL

    Firstly to say sorry,I'm a beginner and my English is very little.
    Now I want to know
    How to pass parameter to the Query String of the Named Queries'SQL in the Map editor.
    Thanks.

    benzi,
    Not sure if this is on target for your question, but see #5 in the link below for some web screencasts that show how to pass an input text form field value to the bind variable of a view object. If you're looking for something different, maybe provide some more details such as what you are trying to accomplish and what technology stack you are using - for example, ADF BC, JSF, etc.
    http://radio.weblogs.com/0118231/stories/2005/06/24/jdeveloperAdfScreencasts.html
    Also see section 5.9 and chapter 18 in the developer's guide.
    thanks

  • How to encrypte password using form 6i?

    Dear all,
    How to encrypte password using form 6i?
    Best Regards,
    Amy
    Edited by: amychan60 on Sep 29, 2008 8:23 PM

    DBMS_CRYPTO and DBMS_OBFUSCATION_TOOLKIT packages provide APIs for data encryption.
    Note: 102902.1 - Encrypting Data using the DBMS_OBFUSCATION_TOOLKIT package
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=102902.1
    Note: 197400.1 - Example Code Encrypting Credit Card Numbers
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=197400.1
    Developing Applications Using Data Encryption
    http://download.oracle.com/docs/cd/B19306_01/network.102/b14266/apdvncrp.htm

  • No available encryption algorithms in my ASA

    Hi all,
    I have a cisco asa 5510 running ver 8.02, when i navigate to "remote access vpn-> advanced->ssl settings" i could not see any available algorithms under encryption section. How can i add the encryption algorithm in? I need the encryption algorithm as i want to enable ssl authentication using cert on my asa interface. Pls advise. Thk you.

    Hi Don,
    What exactly are you looking for?
    The ASA base license does allow two simultaneous SSL sessions and you do not need any extra license to achieve certificate authentication.
    In order to allow certificate authentication per connection profile:
    Please check this document for further reference:
    AnyConnect Certificate Based Authentication.
    HTH.
    Portu.
    Please rate any helpful posts

  • How to encrypt password using md5

    Hello all,
    I would like to generate a password and encrypt it using md5 with the current time(System's time) as the key, in Servlets.
    How do i go about doing this?
    Kindly guide.
    regards
    appu

    >
    I would like to generate a password and encrypt it
    using md5 MD5 is a non-reversible hashing, not an encryption!
    with the current time(System's time) as the
    key, If you use the current system time as the key for any encryption algorithm then how are you going to know what system time to use to decrypt?
    in Servlets.
    How do i go about doing this?Read up on encryption, the JCE and Servlets.

Maybe you are looking for

  • Converting UNPROTECTED Mp4 files to Mp3 format?

    I have some unprotected Mp4 files that I can't seem to convert to Mp3 format. The weird thing is, under Advanced, when I try to convert Protected Mp4 videos, there's an option that says "Convert to Mp3 format", but with my unprotected Mp3 files, ther

  • Form submits

    I have following jsp page in struts. if you see, this page has four editable textfields and one submit button. when i edit four textfiled values and then try to press submit, I want to submit these four textfiled values to a stored procedure which up

  • After upgrade from FB4Beta to FB4, web services no longer returning the same data types.

    I just upgraded from FB4 beta to the FB4 release. I'm still running the Flex 3.5 SDK and amnow  unable to use a lot of my web services. In the previous FB4 beta, I could generate the proxy classes from the WSDL and would get a ResultEvent that contai

  • Change log in

    How do I change my log-in email address

  • User exit for qm12 ?

    hello experts, i have a problem in QM module i am making one user exit for QM12 on modification button. can anyone help me for getting user exit for this transaction. thank you