Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 28... Línea 28...
28
    private $tag = '';
28
    private $tag = '';
Línea 29... Línea 29...
29
 
29
 
Línea 30... Línea 30...
30
    private $tagLength;
30
    private $tagLength;
-
 
31
 
-
 
32
    /**
-
 
33
     * @var StreamInterface
-
 
34
     */
-
 
35
    private $stream;
31
 
36
 
32
    /**
37
    /**
33
     * Same as non-static 'getAesName' method, allowing calls in a static
38
     * Same as non-static 'getAesName' method, allowing calls in a static
34
     * context.
39
     * context.
35
     *
40
     *
Línea 61... Línea 66...
61
        $this->key = $key;
66
        $this->key = $key;
62
        $this->initializationVector = $initializationVector;
67
        $this->initializationVector = $initializationVector;
63
        $this->aad = $aad;
68
        $this->aad = $aad;
64
        $this->tagLength = $tagLength;
69
        $this->tagLength = $tagLength;
65
        $this->keySize = $keySize;
70
        $this->keySize = $keySize;
-
 
71
        // unsetting the property forces the first access to go through
-
 
72
        // __get().
-
 
73
        unset($this->stream);
66
    }
74
    }
Línea 67... Línea 75...
67
 
75
 
68
    public function getOpenSslName()
76
    public function getOpenSslName()
69
    {
77
    {
Línea 116... Línea 124...
116
    public function getTag()
124
    public function getTag()
117
    {
125
    {
118
        return $this->tag;
126
        return $this->tag;
119
    }
127
    }
Línea 120... Línea 128...
120
 
128
 
121
    public function isWritable()
129
    public function isWritable(): bool
122
    {
130
    {
123
        return false;
131
        return false;
124
    }
132
    }