Torna indietro   Hardware Upgrade Forum > Software > Programmazione

Cineca inaugura Pitagora, il supercomputer Lenovo per la ricerca sulla fusione nucleare
Cineca inaugura Pitagora, il supercomputer Lenovo per la ricerca sulla fusione nucleare
Realizzato da Lenovo e installato presso il Cineca di Casalecchio di Reno, Pitagora offre circa 44 PFlop/s di potenza di calcolo ed è dedicato alla simulazione della fisica del plasma e allo studio dei materiali avanzati per la fusione, integrandosi nell’ecosistema del Tecnopolo di Bologna come infrastruttura strategica finanziata da EUROfusion e gestita in collaborazione con ENEA
Mova Z60 Ultra Roller Complete: pulisce bene grazie anche all'IA
Mova Z60 Ultra Roller Complete: pulisce bene grazie anche all'IA
Rullo di lavaggio dei pavimenti abbinato a un potente motore da 28.000 Pa e a bracci esterni che si estendono: queste, e molte altre, le caratteristiche tecniche di Z60 Ultra Roller Complete, l'ultimo robot di Mova che pulisce secondo le nostre preferenze oppure lasciando far tutto alla ricca logica di intelligenza artificiale integrata
Renault Twingo E-Tech Electric: che prezzo!
Renault Twingo E-Tech Electric: che prezzo!
Renault annuncia la nuova vettura compatta del segmento A, che strizza l'occhio alla tradizione del modello abbinandovi una motorizzazione completamente elettrica e caratteristiche ideali per i tragitti urbani. Renault Twingo E-Tech Electric punta su abitabilità, per una lunghezza di meno di 3,8 metri, abbinata a un prezzo di lancio senza incentivi di 20.000€
Tutti gli articoli Tutte le news

Vai al Forum
Rispondi
 
Strumenti
Old 17-02-2011, 14:08   #1
2oceano
Junior Member
 
Iscritto dal: Feb 2011
Messaggi: 1
encrypt per Access in visualbasic

Ciao Ragazzi sono nuovo e spero di non sbagliare sezione o impostazione del messaggio,

Vi spiego il mio problema, ho utilizzato un codice che mi permette di criptare e decriptare uno specifico campo, funziona perfettamente ma l'unico inconveniente è che nel criptare il campo utilizza codici asci ad esempio codificando un codice fiscale mi dà come risultato
¸©ª¬´©™–g¸—–©––˜¸ siccome lo esporto in xml nell'importazione non riconoscono questi caratteri e creano problemi di accettazione.

vi è un modo che permetta di codificare con caratteri "non ascii"? ho provato a cercare altri comandi da sostituire ad ASC ma non penso che sia questo il problema,
spero di essere stato chiaro vi incollo il codice per vedere se si può modificare per ottenere il risultato richiesto.

grazie a tutti

Codice:
    Option Compare Database
    Option Explicit
    Const PASSWORD_KEY = "f"
    'modificare la chiave con una a piacimento

    '================================================
    ' Function: encrypt
    '
    ' Purpose: To encrypt or decrypt a string using
    ' a predefined key value stored as
    ' the constant PASSWORD_KEY. The same
    ' string encrypted twice won't always
    ' look the same because the function
    ' chooses a random starting position
    ' within the key to encrypt values.
    '
    ' Call: gResult = encryt("Hello World", true)
    '
    ' In: strFull - String containing the
    ' text to encrypt/decrypt
    '
    ' fEncrypt - Boolean set to TRUE to
    ' encrypt the string, FALSE
    ' to decrypt it.
    '
    ' Out: none
    '
    ' Returns: String - The encrypted/decrypted
    ' value if successful, ""
    ' otherwise
    '
    ' History: 98/06/10 created by Dima Mnushkin
    '
    '================================================
    Public Function encrypt(strFull As String, _
    fEncrypt As Boolean) As String
    On Error GoTo Err_encrypt

    Dim intInputPos As Integer
    Dim intPassKeyPos As Integer
    Dim strOutput As String
    Dim intTemp As Integer
    Dim strStartingPos As String

    If strFull = "" Then GoTo Exit_encrypt

    ' Encrypt a value
    If fEncrypt Then
    ' Initialize the random function
    Randomize

    ' Determine the starting position to use in
    ' the encryption string
    intPassKeyPos = Int(Len(PASSWORD_KEY) * _
    Rnd + 1)

    ' Encrypt the starting position used in
    ' preparation to storing it in the middle of
    ' the encrypted result
    intTemp = intPassKeyPos + _
    Asc(Left(PASSWORD_KEY, 1))
    If intTemp > 255 Then intTemp = intTemp - 255
    strStartingPos = Chr(intTemp)

    ' Encrypt the full string
    For intInputPos = 1 To Len(strFull)
    intPassKeyPos = intPassKeyPos + 1

    ' Wrap to the beginning of the key if we have
    ' have used up the last character.
    If intPassKeyPos > Len(PASSWORD_KEY) Then
    intPassKeyPos = 1
    End If

    ' Add the value of the character to be
    ' encrypted to the value of the character
    ' stored at the current position in the key
    intTemp = Asc(Mid(strFull, intInputPos, 1) _
    ) + Asc(Mid(PASSWORD_KEY, _
    intPassKeyPos, 1))
    If intTemp > 255 Then intTemp = intTemp - 255

    ' If we are at middle of the result string,
    ' insert our encrypted starting position so
    ' we can decrypt this string later.
    If CInt(Len(strFull) / 2) + 1 = intInputPos _
    Then strOutput = strOutput & strStartingPos

    strOutput = strOutput & Chr(intTemp)

    Next intInputPos

    ' Decrypt a value
    Else
    ' Retrieve the encrypted starting position from
    ' the middle of the string to be decrypted
    intPassKeyPos = Asc(Mid(strFull, _
    CInt((Len(strFull) - 1) / 2) + 1, 1)) - _
    Asc(Left(PASSWORD_KEY, 1))

    If intPassKeyPos < 0 Then _
    intPassKeyPos = intPassKeyPos + 255

    ' Decrypt the full string
    For intInputPos = 1 To Len(strFull)
    intPassKeyPos = intPassKeyPos + 1

    If intPassKeyPos > Len(PASSWORD_KEY) Then _
    intPassKeyPos = 1

    ' Decrypt each character by subtracting the
    ' value of the corresponding character stored
    ' in the key.
    intTemp = Asc(Mid(strFull, intInputPos, 1)) - _
    Asc(Mid(PASSWORD_KEY, intPassKeyPos, 1))

    If intTemp <= 0 Then intTemp = intTemp + 255

    ' If we are looking at the middle character,
    ' ignore it since its the encrypted starting
    ' position.
    If intInputPos = CInt((Len(strFull) - 1) / 2) + _
    1 Then
    intPassKeyPos = intPassKeyPos - 1

    Else
    strOutput = strOutput & Chr(intTemp)

    End If

    Next intInputPos

    End If

    encrypt = strOutput

    Exit_encrypt:
    Exit Function

    Err_encrypt:
    encrypt = ""
    MsgBox Error
    Resume Exit_encrypt

    End Function
2oceano è offline   Rispondi citando il messaggio o parte di esso
 Rispondi


Cineca inaugura Pitagora, il supercomputer Lenovo per la ricerca sulla fusione nucleare Cineca inaugura Pitagora, il supercomputer Lenov...
Mova Z60 Ultra Roller Complete: pulisce bene grazie anche all'IA Mova Z60 Ultra Roller Complete: pulisce bene gra...
Renault Twingo E-Tech Electric: che prezzo! Renault Twingo E-Tech Electric: che prezzo!
Il cuore digitale di F1 a Biggin Hill: l'infrastruttura Lenovo dietro la produzione media Il cuore digitale di F1 a Biggin Hill: l'infrast...
DJI Osmo Mobile 8: lo stabilizzatore per smartphone con tracking multiplo e asta telescopica DJI Osmo Mobile 8: lo stabilizzatore per smartph...
Tesla, Musk promette FSD 'quasi pronto' ...
BioWare conferma: il nuovo Mass Effect &...
5 robot aspirapolvere di fascia alta in ...
Xiaomi Redmi Note 14 5G a 179€ è ...
Veri affari con gli sconti de 15% Amazon...
Tutti gli iPhone 16 128GB a 699€, 16e a ...
Take-Two ammette: vendite di Borderlands...
Tutti i Macbook Air e Pro con chip M4 ch...
GeForce RTX 50 SUPER: non cancellate, ma...
Warner Bros. riporterà al cinema ...
Hai usato il 'Pezzotto'? Ora anche la Se...
TeraFab: Musk vuole costruire la fabbric...
Lo compri una volta, lo giochi dove vuoi...
Qiantinuum annuncia Helios, "il com...
Samsung Galaxy S26 Ultra: una sola novit...
Chromium
GPU-Z
OCCT
LibreOffice Portable
Opera One Portable
Opera One 106
CCleaner Portable
CCleaner Standard
Cpu-Z
Driver NVIDIA GeForce 546.65 WHQL
SmartFTP
Trillian
Google Chrome Portable
Google Chrome 120
VirtualBox
Tutti gli articoli Tutte le news Tutti i download

Strumenti

Regole
Non Puoi aprire nuove discussioni
Non Puoi rispondere ai messaggi
Non Puoi allegare file
Non Puoi modificare i tuoi messaggi

Il codice vB è On
Le Faccine sono On
Il codice [IMG] è On
Il codice HTML è Off
Vai al Forum


Tutti gli orari sono GMT +1. Ora sono le: 11:11.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Served by www3v